-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeather.html
More file actions
41 lines (31 loc) · 1.02 KB
/
Weather.html
File metadata and controls
41 lines (31 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>weatherApp</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="location">
<h1 class="location-timezone">City, Country</h1>
<p><img id="icon" src="icons/01d.png"></p>
</div>
<div class="date">
<h1 class='day'>Day</h1>
<h1 class='time'>hh:mm:ss</h1>
</div>
<div class="temperature">
<div class="temperature-degree">
<h1 class="temperature-degree-value">33</h1>
<span class="temperature-degree-C">℃</span>
<span>|</span>
<span class="temperature-degree-F">℉</span>
</div>
<div class="temperature-description">Sunny</div>
</div>
<div class="others">
<h1 class="wind">Wind:---</h1>
<h1 class="humidity">Humidity:---</h1>
</div>
<script src="script.js"></script>
</body>
</html>