-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (125 loc) · 2.92 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Person Website - Glen</title>
</head>
<body>
<h1>Old Page here.</h1>
<div class="slider">
<div class="line"></div>
<div class="break dot1"></div>
<div class="break dot2"></div>
<div class="break dot3"></div>
</div>
<p>
You will be redirected to the new page in <b>10s</b>.. Not working?
<a href="https://glennfor.tech">Click here.</a>
</p>
<style>
@import url(https://fonts.googleapis.com/css?family=Raleway:100);
body {
background: #222;
margin: 40px 50px;
color: #4a8df8;
font-family: 'Raleway', cursive;
font-weight: 100;
overflow-x: hidden;
}
h1 {
color: #4a8df8;
font-family: 'Raleway', cursive;
font-weight: 100;
font-stretch: normal;
font-size: 3em;
}
a {
color: #4a8df8;
font-family: 'Raleway', cursive;
}
.slider {
position: absolute;
width: 300px;
height: 2px;
margin-top: -30px;
}
.line {
position: absolute;
background: #4a8df8;
width: 300px;
height: 2px;
}
.break {
position: absolute;
background: #222;
width: 6px;
height: 2px;
}
.dot1 {
-webkit-animation: loading 2s infinite;
-moz-animation: loading 2s infinite;
-ms-animation: loading 2s infinite;
-o-animation: loading 2s infinite;
animation: loading 2s infinite;
}
.dot2 {
-webkit-animation: loading 2s 0.5s infinite;
-moz-animation: loading 2s 0.5s infinite;
-ms-animation: loading 2s 0.5s infinite;
-o-animation: loading 2s 0.5s infinite;
animation: loading 2s 0.5s infinite;
}
.dot3 {
-webkit-animation: loading 2s 1s infinite;
-moz-animation: loading 2s 1s infinite;
-ms-animation: loading 2s 1s infinite;
-o-animation: loading 2s 1s infinite;
animation: loading 2s 1s infinite;
}
@keyframes loading {
from {
left: 0;
}
to {
left: 400px;
}
}
@-moz-keyframes loading {
from {
left: 0;
}
to {
left: 400px;
}
}
@-webkit-keyframes loading {
from {
left: 0;
}
to {
left: 400px;
}
}
@-ms-keyframes loading {
from {
left: 0;
}
to {
left: 400px;
}
}
@-o-keyframes loading {
from {
left: 0;
}
to {
left: 400px;
}
}
</style>
<script>
setTimeout(() => window.open('https://glennfor.tech'), 10000);
</script>
</body>
</html>