-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy patholdschool.html
219 lines (184 loc) · 4.6 KB
/
oldschool.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<html>
<header>
<title>80`s feeling</title>
<link href="style/style.css" type="text/css" rel="stylesheet" />
<style>
img {
float: left;
}
,
p {
margin-left: 40px;
float: left;
width: 100px;
}
h1 {
animation: myfirst 5s;
-moz-animation: myfirst 5s infinite;
/* Firefox */
-webkit-animation: myfirst 5s infinite;
/* Safari and Chrome */
}
@-moz-keyframes myfirst
/* Firefox */
{
0% {
background: red;
}
50% {
background: yellow;
}
100% {
background: red;
}
}
@-webkit-keyframes myfirst
/* Safari and Chrome */
{
0% {
background: red;
}
50% {
background: yellow;
}
100% {
background: red;
}
}
.fake_ads {
float: right;
}
.fake_ad {
height: 200px;
width: 150px;
background-color: red;
margin-bottom: 50px;
animation: ads_trans 5s;
-moz-animation: ads_trans 5s infinite;
/* Firefox */
-webkit-animation: ads_trans 5s infinite;
/* Safari and Chrome */
}
@-moz-keyframes ads_trans
/* Firefox */
{
0% {
background: blue;
}
50% {
background: pink;
}
100% {
background: yellow;
}
}
@-webkit-keyframes ads_trans
/* Safari and Chrome */
{
0% {
background: blue;
}
50% {
background: pink;
}
100% {
background: yellow;
}
}
div h2 {
text-align: center;
}
div p {
font-size: 20px;
text-align: center;
}
.blinky {
animation: blink_text 1s;
-moz-animation: blink_text 1s infinite;
/* Firefox */
-webkit-animation: blink_text 1s infinite;
/* Safari and Chrome */
}
@-moz-keyframes blink_text
/* Firefox */
{
0% {
color: lightgray;
}
50% {
color: red;
}
100% {
color: red;
}
}
@-webkit-keyframes blink_text
/* Safari and Chrome */
{
0% {
color: lightgray;
}
50% {
color: red;
}
100% {
color: red;
}
}
</style>
</header>
<body style="background-color: gray">
<h1>
<marquee behavior="scroll" direction="left">This is my awesome Website </marquee>
</h1>
<img src="https://media.giphy.com/media/zBuQUdIDLCxBC/giphy.gif" width="150" height="800" />
<p>
In the 80s Websites did just look fucking nice!
</p>
<p>
Have fun at hacktober 2018!
</p>
<div class="fake_ads">
<div class="fake_ad">
<h2>
Free Kredit
</h2>
<p>
just enter your IBAN and Pin
</p>
<p class="blinky">
so easy!!
</p>
</div>
<div class="fake_ad">
<h2>
Get your free candy
</h2>
<p>
Just give your first born child
</p>
<p class="blinky">
BEST offer in town!!
</p>
</div>
<div>
<footer>
<nav>
<ul>
<li style="
list-style-type: none;
top: 95%;
right: 85%;
position: absolute;">
<a href="./home.html" style="
text-decoration: none;
color: inherit;">Home</a>
</li>
</ul>
</nav>
</footer>
</div>
</div>
<br /><br /><center><a id="back_to_home" href="home.html">Go back to home</a></center>
</body>
</html>