-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (64 loc) · 2.35 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
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="shortcut icon" href="https://openweathermap.org/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<header>
<section class="searchBar">
<span style="color: white;" class="material-symbols-outlined">
search
</span>
<input class="input_box" id="input" placeholder="Seacrh Your City" type="text">
</section>
<button class="search_button">Search</button>
</header>
<main>
<ul>
<li class="place">London,United KingDom</li>
<li class="realtime">Friday,february 2024</li>
<li class="weatherType">cloud</li>
<li class="weatherImage">clody</li>
<li class="temp">278°</li>
<li><ul class="min_max_temp">
<li class="mintemp">min:277°</li>
<li class="maxtemp">min:285°</li>
</ul></li>
</ul>
</main>
<footer>
<ul class="weather">
<li><span class="material-symbols-outlined">
device_thermostat
</span>
<span><p>Feels Like</p>
<p class="feelslike">28°</p>
</span></li>
<li><span class="material-symbols-outlined">
humidity_mid
</span>
<span><p>Humidity</p>
<p class="humidity">28°</p>
</span></li>
<li><span class="material-symbols-outlined">
air
</span>
<span><p>wind</p>
<p class="wind">28°</p>
</span></li>
<li><span class="material-symbols-outlined">
wifi_tethering_error
</span>
<span><p>Pressure</p>
<p class="Pressure">28°</p>
</span></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>