-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.04 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" />
<title>MOOSAM</title>
<link rel="stylesheet" href="css/styles.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="container">
<header class="header">
<h1 class="logo">MOOSAM</h1>
<div class="search-container">
<input type="text" class="search-bar" placeholder="Search for a city..." />
<span class="material-symbols-outlined search-button">search</span>
</div>
</header>
<div class="city">Boston, United Kingdom</div>
<div class="date-time">2024-08-24 13:24</div>
<div class="temperature">15°C</div>
<div class="description">Overcast</div>
<div class="temp-range">14°C - 16°C</div>
<div class="weather-details">
<div class="detail-item">
<div>Wind</div>
<div>11.2 km/h</div>
</div>
<div class="detail-item">
<div>Humidity</div>
<div>94%</div>
</div>
<div class="detail-item">
<div>Cloud</div>
<div>100%</div>
</div>
<div class="detail-item">
<div>UV</div>
<div>4</div>
</div>
</div>
<div class="condition">Cloudy</div>
<div class="hourly-forecast">
<h3>Past 12 Hour</h3>
<!-- Hourly forecast items will be dynamically added here -->
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>