-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 982 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>NewTabx | loading</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
color: white;
opacity: 0;
animation: fadeTextGlow 5s linear infinite;
text-shadow: 0 0 10px white;
}
@keyframes fadeTextGlow {
0% {
opacity: 0;
text-shadow: 0 0 10px white;
}
50% {
opacity: 1;
text-shadow: 0 0 20px white;
}
100% {
opacity: 0;
text-shadow: 0 0 10px white;
}
}
</style>
<script>
window.location.href = 'https://admin-x.onrender.com';
</script>
</head>
<body bgcolor="black">
<div id="loading">Loading...</div>
</body>
</html>