-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.12 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.12 KB
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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>The Internet</title>
<style type="text/css" media="screen">
@-webkit-keyframes swing {
0% {
text-shadow: #939781 5px 0px 0;
}
50% {
text-shadow: #458A97 0px 5px 0;
}
100% {
text-shadow: #970923 -5px 0px 0;
}
}
html {
background: #2E2C33;
}
p {
width: 100%;
font-weight: bold;
position: relative;
top: 30%;
font-size: 94px;
color: #FDFFE9;
margin: auto;
text-align: center;
text-shadow: #939781 3px 3px 0;
font-family: sans-serif;
-webkit-animation-name: swing;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-direction: alternate;
}
img {
width: 20%;
}
</style>
</head>
<body>
<p>
~ Y hello thar ~ <img alt="from somethingawful.com" src="http://i.somethingawful.com/forumsystem/emoticons/emot-parrot.gif">
</p>
</body>
</html>