-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
231 lines (223 loc) · 6.85 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
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
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Triple Dare</title>
<link rel="stylesheet" href="style/normalize.css" />
<link
href="https://fonts.googleapis.com/css?family=Atma:400,700%7CBangers:400"
rel="stylesheet"
/>
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">home</a></li>
<li><a href="#obstacles">obstacles</a></li>
<li><a href="#prizes">prizes</a></li>
<li><a href="#apply">apply</a></li>
</ul>
</nav>
<div>
<img src="img/tripledare.svg" alt="Triple Dare " width="600" />
<h1>Triple Dare<br />The web's messiest challenge!</h1>
</div>
</header>
<main>
<article id="obstacles" class="obstacles group">
<div class="wrap">
<h2>Obstacles</h2>
<ul class="obstacles">
<li>
<img src="img/tank.png" width="200" height="200" alt="Tank" />
<h3 class="obstacles-title"><a href="#">The tank</a></h3>
</li>
<li>
<img
src="img/slide.png"
width="200"
height="200"
alt="Sundae Slide"
/>
<h3 class="obstacles-title">
<a href="#">Sundae Slide</a>
</h3>
</li>
<li>
<img src="img/hatch.png" width="200" height="200" alt="Hatch" />
<h3 class="obstacles-title"><a href="#">Down the Hatch</a></h3>
</li>
<li>
<img
src="img/pickit.png"
width="200"
height="200"
alt="Pick it"
/>
<h3 class="obstacles-title"><a href="#">Pick it</a></h3>
</li>
<li>
<img
src="img/wringer.png"
width="200"
height="200"
alt="Wringer"
/>
<h3 class="obstacles-title"><a href="#">The Wringer</a></h3>
</li>
<li>
<img
src="img/hwheel.png"
width="200"
height="200"
alt="Hamster Wheel"
/>
<h3 class="obstacles-title"><a href="#">Hamster wheel</a></h3>
</li>
</ul>
</div>
<!--wrap-->
</article>
<article id="prizes" class="prizes">
<div class="wrap">
<h2>Prizes</h2>
<ul>
<li id="spacecamp">
<img
src="img/spacecamp.png"
width="353"
height="375"
alt="Spacecamp"
/>
<h3 class="obstacles-title">
<a href="#">A Trip to space camp!</a>
</h3>
</li>
<li id="keyboard">
<img
src="img/keyboard.png"
width="391"
height="150"
alt="Keyboard"
/>
<h3 class="obstacles-title">
<a href="#">a CASIO RAPMAN KEYBOARD!</a>
</h3>
</li>
<li id="heatzone">
<img
src="img/heatzone.png"
width="393"
height="228"
alt="Heatzone"
/>
<h3><a href="#">a NASH SKATEBOARD!</a></h3>
</li>
<li id="tv">
<img src="img/tv.png" width="333" height="351" alt="Tv" />
<h3 class="obstacles-title">
<a href="#">a 13 inch TV/VCR Combo!</a>
</h3>
</li>
</ul>
</div>
<!--wrap-->
</article>
<article id="apply">
<div class="wrap">
<h2>Apply</h2>
<form>
<label for="username"
>Your name*
<input
id="username"
name="username"
type="text"
placeholder="ex. Joe Doe"
required
/>
</label>
<label for="email"
>Your email*
<input
id="email"
name="email"
type="email"
placeholder="ex. [email protected]"
required
/>
</label>
<label for="team"
>Team name*
<input
id="team"
name="team"
type="text"
placeholder="ex. EthersJs"
required
/></label>
<label
>Team color*
<input
type="text"
list="colors"
placeholder="ex. blue"
required
/>
<datalist id="colors">
<option value="blue">blue</option>
<option value="yellow">yellow</option>
<option value="pink">pink</option>
</datalist>
</label>
<button type="submit">Submit entry!</button>
</form>
<div class="obstacles-small-grid">
<img src="img/tank.png" width="200" height="200" alt="Tank" />
<img
src="img/slide.png"
width="200"
height="200"
alt="Sundae Slide"
/>
<img src="img/hatch.png" width="200" height="200" alt="Hatch" />
<img src="img/pickit.png" width="200" height="200" alt="Pick it" />
<img src="img/wringer.png" width="200" height="200" alt="Wringer" />
<img
src="img/hwheel.png"
width="200"
height="200"
alt="Hamster Wheel"
/>
</div>
</div>
</article>
</main>
<footer>
<div class="wrap">
<img src="img/kn.svg" alt="logo kn" width="150" />
<h2>Our Network</h2>
<p>
The Knucklelodeon Network is not affiliated with Nickelodeon, nor is
it an actual television network
</p>
<p>
Triple Dare contestents consent to potential physical bodily harm,
like being burried alive by a giant waffle.
</p>
<h3>Visit our studios</h3>
<address>
11 Slime Time Way<br />
Sacrameno, CA 94203
</address>
<address>
329 Gunk Road<br />
Jacksonville, FL 32099
</address>
</div>
</footer>
</body>
</html>