forked from you-dont-need/You-Dont-Need-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Forecast</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="weather-widget">
<h1>Weather Forecast</h1>
<div class="weather-location">
<h2>New York City</h2>
<p>Monday, 7 October 2024</p>
</div>
<div class="weather-details">
<h3>25°C</h3>
<p>Sunny</p>
<p>Humidity: 55%</p>
<p>Wind: 12 km/h</p>
</div>
</div>
<!-- Weekly forecast -->
<div class="weekly-forecast">
<h2>Weekly Forecast</h2>
<div class="forecast-row">
<div class="day-forecast">
<p>Mon</p>
<h3>26°C</h3>
<p>Sunny</p>
</div>
<div class="day-forecast">
<p>Tue</p>
<h3>22°C</h3>
<p>Cloudy</p>
</div>
<div class="day-forecast">
<p>Wed</p>
<h3>19°C</h3>
<p>Rainy</p>
</div>
<div class="day-forecast">
<p>Thu</p>
<h3>24°C</h3>
<p>Partly Cloudy</p>
</div>
<div class="day-forecast">
<p>Fri</p>
<h3>28°C</h3>
<p>Sunny</p>
</div>
</div>
</div>
</body>
</html>