-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (67 loc) · 2.36 KB
/
index.html
File metadata and controls
77 lines (67 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<script src="script.js" defer></script>
<script src="language.js" defer></script>
<script src="stylebuttons.js" defer></script>
</head>
<body>
<header>
<div class="language-box">
<button id="en" class="change-language active" data-lang="en">EN</button>
<button id="ru" class="change-language" data-lang="ru">RU</button>
</div>
</header>
<div class="container">
<div class="search-box">
<i class='bx bxs-map'></i>
<input type="text" placeholder="Choose your location">
<button class="bx bx-search-alt"></button>
</div>
<p class="city-hide">city hide</p>
<div class="weather-box">
<div class="box">
<div class="info-weather">
<div class="weather">
<img src="pics/broken-clouds.png" alt="Weather picture">
<p class="temperature">16<span>°C</span></p>
<p class="description">Broken Clouds</p>
</div>
</div>
</div>
</div>
<div class="weather-details">
<div class="humidity">
<i class='bx bx-water' ></i>
<div class="text">
<div class="info-humidity">
<span>0%</span>
</div>
<p>Humidity</p>
</div>
</div>
<div class="wind">
<i class='bx bx-wind' ></i>
<div class="text">
<div class="info-wind">
<span>0M/s</span>
</div>
<p>Wind Speed</p>
</div>
</div>
</div>
<div class="not-found">
<div class="box">
<img src="pics/404.png" alt="not-found">
<p>Whoops! We couldn't find <br>that location.</p>
</div>
</div>
</div>
</body>
</html>