-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 1.94 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
<!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="./styles.css" />
<link rel="icon" type="image/x-icon" href="./assets/favicon.png" />
<title>Weather App</title>
</head>
<body>
<div class="main">
<div id="temperature-scale-toggler">
<div id="toggler-selected-area">
<p id="temperature-toggler-info">C°</p>
</div>
</div>
<h1 id="header">Check the weather of (almost) any place you want.</h1>
<div class="search-section">
<input type="text" id="search-bar" />
<button id="search-button">Search</button>
<h2 id="search-status"></h2>
</div>
<div class="weather-data-display">
<div class="left-side-display">
<p class="display-title" id="location-title"></p>
<p class="display-value" id="location-name"></p>
<p class="display-title" id="humidity-title"></p>
<p class="display-value" id="humidity"></p>
<p class="display-title" id="wind-title"></p>
<p class="display-value" id="wind-speed"></p>
</div>
<div class="right-side-display">
<p id="temperature"></p>
<p class="display-title" id="feels-like-title"></p>
<p class="display-value" id="feels-like"></p>
<div class="condition-container">
<div class="condition-text">
<p class="display-title" id="condition-title"></p>
<p class="display-value" id="condition"></p>
</div>
<img src="" alt="" id="condition-icon" />
</div>
</div>
</div>
</div>
<footer id="footer">
<p>
Powered by
<a href="https://www.weatherapi.com/" title="Free Weather API"
>WeatherAPI.com</a
>
</p>
</footer>
</body>
<script src="script.js"></script>
</html>