forked from Technigo/project-weather-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.53 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css2?family=Overlock:wght@400;700;900&display=swap" rel="stylesheet">
<title>Weather App</title>
</head>
<body>
<section id="appContainer">
<!-- Top left lines -->
<div class="top-left">
<p id="currentWeather"></p>
<p id="sunrise"></p>
<p id="sunset"></p>
</div>
<!-- Headline content -->
<div class="now">
<img class="icon" id="nowIcon"/>
<h1 id="now"></h1>
</div>
<!-- 5 day forecast -->
<div class="five-day" id="fiveDay">
<!-- JavaScript to inject forecast -->
</div>
<!-- Change city -->
<div class="city-selector">
<select name="city-nav" id="cityNav" class="city-nav" placeholder="Change City">
<option>Stockholm</option>
<option>San Francisco</option>
<option>London</option>
<option>Taipei</option>
<option>Melbourne</option>
</select>
</div>
<!-- Footer -->
<footer>
<div class="footer">
Made by Peggy @<a href="https://blipsandclicks.com">blipsandclicks</a>
during Technigo Bootcamp 2020 for educational purposes. Weather data from <a href="https://openweathermap.org/">OpenWeather</a>.
</div>
</footer>
</section>
<script src="./script.js"></script>
</body>
</html>