-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (84 loc) · 3.74 KB
/
Copy pathindex.html
File metadata and controls
85 lines (84 loc) · 3.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="reset.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,500" rel="stylesheet">
</head>
<body>
<header>
<div id="title">
<p id="main-title">Local Weather Forecast</p>
<p id="sub-title">Northern California with Doppler radar</p>
</div>
<div id="header-mid-bottom-area">
<p id="forecast-for">Forecast for</p>
<div id="search">
<input id="searchbar" type="text" value="San Francisco">
<button id="submit-button">submit</button>
</div>
<div id="header-bottom-area">
<div id="current-weather">
<img id="current-weather-icon">
<div id="current-time-temp-div">
<div id="current-time-div">
<p id="current-time"></p>
<p id="current-date"></p>
</div>
<div id="current-time-temp-border"></div>
<p id="current-temp"></p>
</div>
</div>
<div id="map">
<div id="location">
<img id="location-icon" src="./assets/location.png">
</div>
<img id="map-background" src="https://radar.weather.gov/ridge/Overlays/Topo/Short/DAX_Topo_Short.jpg">
<img id="map-borders" src="https://radar.weather.gov/ridge/Overlays/County/Short/DAX_County_Short.gif">
<div id="map-radars"></div>
<img id="map-cities" src="https://radar.weather.gov/ridge/Overlays/Cities/Short/DAX_City_Short.gif">
</div>
</div>
</div>
<img id="arrow-up" src="./assets/arrow-up.png">
</header>
<main>
<img id="arrow-down" src="./assets/arrow-down.png">
<div id="next-hours">
<div class="next-hour">
<p class="next-hour-time"></p>
<img class="next-hour-icon">
<p class="next-hour-temp"></p>
</div>
<div class="next-hour-border"></div>
<div class="next-hour">
<p class="next-hour-time"></p>
<img class="next-hour-icon">
<p class="next-hour-temp"></p>
</div>
<div class="next-hour-border"></div>
<div class="next-hour">
<p class="next-hour-time"></p>
<img class="next-hour-icon">
<p class="next-hour-temp"></p>
</div>
<div class="next-hour-border"></div>
<div class="next-hour">
<p class="next-hour-time"></p>
<img class="next-hour-icon">
<p class="next-hour-temp"></p>
</div>
<div class="next-hour-border"></div>
<div class="next-hour">
<p class="next-hour-time"></p>
<img class="next-hour-icon">
<p class="next-hour-temp"></p>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>