-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
317 lines (296 loc) · 10.3 KB
/
index.html
File metadata and controls
317 lines (296 loc) · 10.3 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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!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>Weather for next 5 days</title>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Stylesheet CSS -->
<link rel="stylesheet" href="CSS/main.css" />
</head>
<body>
<!-- Header -->
<header>
<!--Mask-->
<div id="intro" class="view">
<div class="mask rgba-black-strong">
<div
class="container-fluid d-flex align-items-center justify-content-center h-100"
>
<div class="row d-flex justify-content-center text-center">
<div class="col-md-10">
<!-- Heading -->
<h2 class="display-4 font-weight-bold text-white pt-5 mb-2">
Weather Wizard
</h2>
<!-- Divider -->
<hr class="hr-light" />
<!-- Description -->
<h4 class="text-white my-4">
Which city do you want to know the weather of?
</h4>
<form>
<div class="form-group">
<select class="form-control">
<option>Select a city</option>
<option>Ghent</option>
<option>Brussels</option>
<option>Antwerp</option>
</select>
</div>
</form>
<button id="button" class="btn btn-primary">
Show
</button>
</div>
</div>
</div>
</div>
</div>
<!--/.Mask-->
</header>
<!-- Header -->
<!-- Content -->
<div class="container-fluid text-center px-5">
<div class="row">
<!-- column 1-->
<div class="col-sm">
<!-- Card -->
<div class="card weather-card m-4">
<!-- Card content -->
<div class="card-body pb-3">
<!-- Title -->
<h4 class="card-title font-weight-bold city1">
</h4>
<!-- Text -->
<p class="card-text day1">
</p>
<div class="d-flex justify-content-between">
<p class="display-4 temp1"></p>
</div>
<div class="d-flex justify-content-between mb-4">
<p class="status1">
<i class="fas fa-tint fa-lg text-info pr-2"></i>
</p>
<p>
<i class="fas fa-leaf fa-lg grey-text pr-2"></i>
</p>
</div>
</div>
</div>
<!-- Card -->
</div>
<!-- column-->
<!-- column 2-->
<div class="col-sm">
<!-- Card -->
<div class="card weather-card m-4">
<!-- Card content -->
<div class="card-body pb-3">
<!-- Title -->
<h4 class="card-title font-weight-bold city2">
</h4>
<!-- Text -->
<p class="card-text day2">
</p>
<div class="d-flex justify-content-between">
<p class="display-4 degree temp2"></p>
</div>
<div class="d-flex justify-content-between mb-4">
<p class="status2">
<i class="fas fa-tint fa-lg text-info pr-2"></i>
</p>
<p>
<i class="fas fa-leaf fa-lg grey-text pr-2"></i>
</p>
</div>
</div>
</div>
<!-- Card -->
</div>
<!-- column-->
<!-- column 3-->
<div class="col-sm">
<!-- Card -->
<div class="card weather-card m-4">
<!-- Card content -->
<div class="card-body pb-3">
<!-- Title -->
<h4 class="card-title font-weight-bold city3">
</h4>
<!-- Text -->
<p class="card-text day3">
</p>
<div class="d-flex justify-content-between">
<p class="display-4 degree temp3"></p>
</div>
<div class="d-flex justify-content-between mb-4">
<p class="status3">
<i class="fas fa-tint fa-lg text-info pr-2"></i>
</p>
<p>
<i class="fas fa-leaf fa-lg grey-text pr-2"></i>
</p>
</div>
</div>
</div>
<!-- Card -->
</div>
<!-- column-->
<!-- column 4-->
<div class="col-sm">
<!-- Card -->
<div class="card weather-card m-4">
<!-- Card content -->
<div class="card-body pb-3">
<!-- Title -->
<h4 class="card-title font-weight-bold city4">
</h4>
<!-- Text -->
<p class="card-text day4">
</p>
<div class="d-flex justify-content-between">
<p class="display-4 degree temp4"></p>
</div>
<div class="d-flex justify-content-between mb-4">
<p class="status4">
<i class="fas fa-tint fa-lg text-info pr-2"></i>
</p>
<p>
<i class="fas fa-leaf fa-lg grey-text pr-2"></i>
</p>
</div>
</div>
</div>
<!-- Card -->
</div>
<!-- column-->
<!-- column 5-->
<div class="col-sm">
<!-- Card -->
<div class="card weather-card m-4">
<!-- Card content -->
<div class="card-body pb-3">
<!-- Title -->
<h4 class="card-title font-weight-bold city5">
</h4>
<!-- Text -->
<p class="card-text day5">
</p>
<div class="d-flex justify-content-between">
<p class="display-4 degree temp5"></p>
</div>
<div class="d-flex justify-content-between mb-4">
<p class="status5">
<i class="fas fa-tint fa-lg text-info pr-2"></i>
</p>
<p>
<i class="fas fa-leaf fa-lg grey-text pr-2"></i>
</p>
</div>
</div>
</div>
<!-- Card -->
</div>
<!-- column-->
</div>
</div>
<!-- Content -->
<!-- Footer -->
<footer class="page-footer font-small unique-color-dark">
<!--Footer Links-->
<div class="container mt-5 mb-4 text-center text-md-left">
<div class="row mt-3">
<!--First column-->
<div class="col-md-3 col-lg-4 col-xl-3 mb-4">
<h6 class="text-uppercase font-weight-bold">
<strong>Weather Wizard</strong>
</h6>
<hr
class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto"
style="width: 60px;"
/>
<p>
Choose a location and know all about the weather, wether you need
boots and umbrella or sunglasses and sunscreen.
</p>
</div>
<!--/.First column-->
<!--Second column-->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<h6 class="text-uppercase font-weight-bold">
<strong>Best locations</strong>
</h6>
<hr
class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto"
style="width: 60px;"
/>
<p>
<a href="#!">North Pole</a>
</p>
<p>
<a href="#!">Sahara</a>
</p>
<p>
<a href="#!">Rain Forest</a>
</p>
<p>
<a href="#!">Ushuaïa</a>
</p>
</div>
<!--/.Second column-->
<!--Third column-->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<h6 class="text-uppercase font-weight-bold">
<strong>Useful Stuff</strong>
</h6>
<hr
class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto"
style="width: 60px;"
/>
<p>
<a href="#!">Umbrella</a>
</p>
<p>
<a href="#!">Sun glasses</a>
</p>
<p>
<a href="#!">Rain boots</a>
</p>
<p>
<a href="#!">Snow shovel</a>
</p>
</div>
<!--/.Third column-->
<!--Fourth column-->
<div class="col-md-4 col-lg-3 col-xl-3">
<h6 class="text-uppercase font-weight-bold">
<strong>Contact</strong>
</h6>
<hr
class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto"
style="width: 60px;"
/>
<p><i class="fas fa-home"></i> BeCode Weather Wizard @Ghent</p>
<p><i class="fa fa-envelope mr-3"></i> info@weatherwizard.com</p>
<p><i class="fa fa-phone mr-3"></i> + 01 callsun</p>
<p><i class="fa fa-print mr-3"></i> + 01 callrain</p>
</div>
<!--/.Fourth column-->
</div>
</div>
<!--/.Footer Links-->
</footer>
<!-- Footer -->
<!-- script -->
<script type="text/javascript" src="JS/main.js"></script>
<!-- script -->
</body>
</html>