-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 1.64 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
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Superdudes321's Website!!!</title>
<style>
html {
background: black;
color: white;
text-align: center;
}
img {
border-radius: 5px;
}
.spin {
animation: spin 2s infinite;
display: inline-block;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
.rainbow {
background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
background-image: gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
color: transparent;
-webkit-background-clip: text;
background-clip: text;
}
.illuminati {
color: green;
}
</style>
</head>
<body>
<h1>
<span class='rainbow'>Superdudes321's Website!!!</span>
</h1>
<span>
BRAD, BILL, NDSKING,MATTHEW, AND ABBIE GRACE THE HUMANS!
</span>
<br>
<img src='./finn.jpg'>
<br>
<h1 class='illuminati'>
<span class='spin'>ILLUMINATI CONFIRMED!!!!</span>
</h1>
<img src='./ILLUMANATEE.gif'>
<br>
<audio controls src='./xfiles.mp3'></audio>
<br>
<br>
<iframe src='http://webchat.freenode.net?channels=%23superdudes' width='647' height='400'></iframe>
<br>
<a href='/asteroids'>Asteroids</a>
</body>
</html>