-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (56 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
<link rel="icon" href="assets/favicon.ico" />
<title>Weather</title>
</head>
<body>
<div class="container">
<div class="search-box">
<i class="bx bxs-map"></i>
<input id="input" type="text" placeholder="Enter City" />
<button class="bx bx-search"></button>
</div>
<div class="weather-box">
<div class="box">
<div class="weather">
<img src="" />
<p class="temp"><span></span></p>
<p class="desc"></p>
</div>
</div>
</div>
<div class="weather-details">
<div class="humidity">
<i class="bx bx-water"></i>
<div class="text">
<div class="info-humidity">
<span></span>
</div>
<p>Humidity</p>
</div>
</div>
<div class="wind">
<i class="bx bx-wind"></i>
<div class="text">
<div class="info-wind">
<span></span>
</div>
<p>Wind Speed</p>
</div>
</div>
</div>
<div class="not-found">
<div class="box">
<img src="assets/404.png" />
<p>Oops! Location not found!</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>