-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprizes.html
179 lines (170 loc) · 4.65 KB
/
prizes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Triple Dare</title>
<link rel="stylesheet" href="normalize.css" />
<link
href="https://fonts.googleapis.com/css2?family=Atma:wght@400;700&family=Bangers&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style-prizes.css" />
</head>
<body>
<div id="top">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="/#obstacles">Obstacles</a></li>
<!-- ancre a revoir -->
<li>
<a href="#">Prizes</a>
</li>
<li>
<a href="apply.html">Apply</a>
</li>
</ul>
</nav>
</div>
<header>
<img
src="images/tripledare.svg"
alt="green-splash"
height="600"
width="600"
/>
</header>
<main>
<article class="quatre">
<h2>Prizes</h2>
<section>
<table>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</section>
<div class="grid-container">
<article class="vignette item-tank">
<img src="images/spacecamp.png" alt="fusée" />
<h3><a href="#">A trip to space camp!</a></h3>
</article>
<article class="vignette item-slide">
<img src="images/keyboard.png" alt="keyboard" />
<h3><a href="#">a CASIO RAPMAN KEYBOARD!</a></h3>
</article>
<article class="vignette item-hatch">
<img src="images/heatzone.png" alt="skate" />
<h3>NASH SKATEBOARD!</h3>
</article>
<article class="vignette item-pickit">
<img src="images/tv.png" alt="uhd" />
<h3>13 inch TV/VCR combo!</h3>
</article>
</div>
</article>
</main>
<footer>
<div class="final">
<img src="images/kn.svg" alt="kn" />
<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 studio</h3>
<p>11 Slime Time Way<br />Sacramento, CA 94203</p>
<p>329 Gunk Road<br />Jacksonville, FL 32099</p>
</div>
</footer>
</body>
</html>