-
Notifications
You must be signed in to change notification settings - Fork 0
/
topsecret.html
49 lines (43 loc) · 1.36 KB
/
topsecret.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>bees laugh in atbash</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="style.css" rel="stylesheet" type="text/css" media="all">
<meta http-equiv = "refresh" content = "3; url = https://www.youtube.com/watch?v=dQw4w9WgXcQ" />
</head>
<body>
<style type="text/css">
.loading:after {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
-webkit-animation: ellipsis steps(4,end) 1500ms infinite;
animation: ellipsis steps(4,end) 1500ms infinite;
content: "\2026"; /* ascii code for the ellipsis character */
width: 0px;
}
@keyframes ellipsis {
to {
width: 1em;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1em;
}
}
</style>
<h1><div class="loading">TOP SECRET MESSAGE INCOMING</div></h1>
<nav>
<script type="text/javascript" src="sidebar.js"></script>
</nav>
<footer>
Site born Friday the 13th, July 2018. --<a href="https://bluef00t.neocities.org/">GO HOME</a>-- Site promises NOT to give you up or let you down.
</footer>
</body>
</html>