-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.19 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
<!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="styles.css">
<title>Weather</title>
</head>
<body>
<div class="container">
<h1>Weather</h1>
<div id="control"><input type="text" id="locationInput" placeholder="Enter a city">
<button id="search">Search</button>
</div>
<div class="weather-info">
<div>
<h2 id="location"></h2>
<div class="units-container">
<button id="cels-btn" class="active">°C</button>
<button id="fahr-btn">°F</button>
</div>
</div>
<div class="weather-info__container">
<div id="temperature"></div>
<div class="desc-wind">
<div id="description"></div>
<div id="wind"></div>
</div>
</div>
</div>
<h2>Погода на 5 днів</h2>
<div class="fivedays"></div>
</div>
<script src="script.js"></script>
</body>
</html>