-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
60 lines (56 loc) · 1.5 KB
/
weather.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Website</title>
<link rel="stylesheet" href="weather.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="container">
<div class="search_box">
<i class='bx bx-current-location'></i>
<input type="text" name="input" placeholder="Your location" class="search_input">
<button> <i class='bx bx-search'></i> </button>
</div>
<div class="weather_box">
<div class="box">
<div class="weather_info">
<div class="weather">
<img src="haze.svg" alt="">
<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>0Km/h</span>
</div>
<p>Wind Speed</p>
</div>
</div>
</div>
<div class="not_found">
<div class="box">
<img src="flat-404-error-template_23-2147741195.jpg" alt="">
</div>
</div>
</div>
<script src="weather.js"></script>
</body>
</html>