-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (47 loc) · 1.08 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
<html>
<head>
<style>
@-webkit-keyframes rainbow {
0% {
color: orange;
}
10% {
color: purple;
}
20% {
color: red;
}
40% {
color: yellow;
}
60% {
color: green;
}
100% {
color: blue;
}
100% {
color: orange;
}
}
h1 {
-webkit-animation: rainbow 3s infinite;
font-family: verdana;
margin-left: 40%;
margin-right: 40%;
}
body {
background-image: url("./thy-nerf-gun.jpg");
background-size: auto 100%;
}
</style>
</head>
<body>
<h1 >Thy's Blog</h1>
<marquee behavior="alternate" direction="down" width="1000" height="500">
<marquee behavior="alternate">
<img height="200px" width="200px" src="./thy-rainbow.jpg">
</marquee>
</marquee>
</body>
</html>