-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 1.89 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
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wilsons Weather</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="icon" type="image/svg+xml" href="/public/weather-color-sun-cloud-svgrepo-com.svg">
<script type="module" src="scripts/script.js" defer></script>
</head>
<body>
<div class="grid-main">
<!-- Navbar -->
<div class="navbar glass-effect"></div>
<div class="navbar-content">
<div class="logo">
<img src="public/weather-day/partly-sunny-day.png" alt="">
<h1 class="title-text">Wilson's Weather</h1>
</div>
<form id="search-form">
<input type="text" id="location-search" placeholder="Search location">
</form>
</div>
<!-- Current Weather -->
<div class="current glass-effect">
<div class="current-header header">
Current Weather
<div id="currentTime"></div>
</div>
<div class="current-body">
<!-- Current weather goes here -->
</div>
</div>
<!-- Hourly Weather -->
<div class="hourly glass-effect">
<div class="blur-effect">
<div class="header">
Hourly Forecast
<div id="currentDate"></div>
</div>
<div class="hourly-body">
<!-- Hourly forecast goes here -->
</div>
</div>
</div>
<!-- Weekly Forecast -->
<div class="weekly glass-effect">
<div class="header">
Weekly Forecast
<div id="currentWeek"></div>
</div>
<div class="weekly-body body-text">
<!-- Weekly forecast goes here -->
</div>
</div>
</div>
</body>
</html>