-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 2.13 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
<!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 rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<title>Weather App</title>
</head>
<body>
<main>
<div id="search-form">
<i class="search-geo bi bi-geo-alt-fill"></i>
<input id="search-input" placeholder="Enter your location: ">
<i id="search-icon" class="fa-solid fa-magnifying-glass"></i>
</div>
<div class="error-section">
<img src="./img/404.png" alt="404 not found image">
<h3 id="message"></h3>
</div>
<div class="container">
<h2 id="city-name"></h2>
<img src="" id="weather-img" alt="weather-icon">
<h2 id="degree"></h2>
<p id="condition"></p>
<div class="others-session">
<div class="others">
<i class="bi bi-water others-icon"></i>
<div class="text">
<span id="humidity"></span>
<p class="others-content">Humidity</p>
</div>
</div>
<div class="others">
<i class="bi bi-wind others-icon"></i>
<div class="text">
<span id="wind"></span>
<p class="others-content">Wind Speed</p>
</div>
</div>
</div>
</div>
</main>
<script src="https://kit.fontawesome.com/71df776f4d.js" crossorigin="anonymous"></script>
<script src="./main.js"></script>
</body>
</html>