-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="https://unpkg.com/akar-icons-fonts"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Weather App</title>
</head>
<body>
<section class="container">
<header class="search-box">
<i class="location ai-location"></i>
<input type="text" class="search-input" placeholder="Search for a city...">
<button class="search-btn">
<i class="ai-search"></i>
</button>
</header>
<main class="main-info hidden">
<p class="city"></p>
<section class="temp-box">
<img width="72">
<p class="temp-c"></p><p class="c-symbol">°c</p>
<p class="temp-f hidden"></p><p class="f-symbol hidden">°f</p>
</section>
<p class="condition"></p>
</main>
<main class="error-info hidden">
<p class="error">404</p>
<p class="error-msg">City not found</p>
</main>
<footer class="extra-info hidden">
<div class="wind">
<i class="ai-air"></i>
<p class="wind-info"></p> <!-- wind speed & wind direction-->
</div>
<div class="humidity">
<i class="ai-water"></i>
<p class="humidity-percent"></p>
</div>
</footer>
</section>
<script src="main.js"></script>
</body>
</html>