-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather_map.html
More file actions
59 lines (46 loc) · 1.69 KB
/
weather_map.html
File metadata and controls
59 lines (46 loc) · 1.69 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
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">
<title>Weather Map</title>
<script type="module" src="js/keys.js"></script>
<link rel="stylesheet" href="CSS/resets.css">
<link rel="stylesheet" href="CSS/layout.css">
<link rel="stylesheet" href="CSS/weather_map.css">
</head>
<body>
<div class="page-wrapper">
<div class="header-container">
<div class="row">
<div class="d-flex justify-space-between current-weather column">
<div class="d-flex date-container">
<div class="date-time column">
<div class="time" id="time">
<span id="am-pm">pm</span>
</div>
<div class="date" id="date"></div>
</div>
<div class="zone column">
<div class="time-zone" id="time-zone">CST</div>
<div id="country" class="country">US</div>
</div>
</div>
<div class="d-flex justify-center current-weather-data">
<div class="d-flex justify-center others" id="current-weather-items">
<!--// --------THIS IS WHERE CURRENT ITEMS SHOULD POPULATE---------//-->
</div>
</div>
</div>
</div>
</div>
<div class="future-forecast container">
<div class="row">
<div class="column justify-space-between" id="fiveDay">
<!---------- THIS IS WHERE 5 DAY FORECAST POPULATES ---------->
</div>
</div>
</div>
<script type="module" src="js/weather_map.js"></script>
</div>
</body>
</html>