-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
63 lines (62 loc) · 2.22 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
<!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="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<title>Weather App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="weather-app">
<form class="search-form" action="">
<input
class="city-input"
type="text"
placeholder="Enter City Name"
/>
<button class="search-btn" type="submit">
<i class="material-icons">search</i>
</button>
</form>
<div class="city-date-section">
<h2 class="city">City</h2>
<p class="date">Date</p>
</div>
<div class="temperature-info">
<div class="description">
<i class="material-icons">sunny</i>
<span class="description-text">Sunny</span>
</div>
<div class="temp">0°</div>
</div>
<div class="additional-info">
<div class="wind-info">
<i class="material-icons">air</i>
<div>
<h3 class="wind-speed">0 KM/H</h3>
<p class="wind-label">Wind</p>
</div>
</div>
<div class="humidity-info">
<i class="material-icons">water_drop</i>
<div>
<h3 class="humidity">--%</h3>
<p class="humidity-label">humidity</p>
</div>
</div>
<div class="visibility-info">
<i class="material-icons">visibility</i>
<div>
<h3 class="visibility-distance">infinity</h3>
<p class="visibility">Visibility</p>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>