-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form>
<input type="text" name="city" placeholder="Select City" aria-label="City">
<ul>
</ul>
</form>
<div id="weather" style = "display:none;">
<img src="" alt="" id="icon">
<h1 id="degrees">20°C</h1>
<h2 id="city">Stockholm</h2>
<button id="change">Change city</button>
<div class="info">
<div>
<h3>Wind</h3>
<div id="windValue" class="value">2<span>km/h</span></div>
</div>
<div>
<h3>Feels like</h3>
<div id="feelsLikeValue" class="value">2<span>km/h</span></div>
</div>
<div>
<h3>Humidity</h3>
<div id="HumidityValue" class="value">2<span>km/h</span></div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js"></script>
<script src="weather.js"= ></script>
</body>
</html>