-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather_map.html
More file actions
34 lines (33 loc) · 1015 Bytes
/
weather_map.html
File metadata and controls
34 lines (33 loc) · 1015 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Five Day Forecast</title>
<script src='https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css' rel='stylesheet'/>
<link rel="stylesheet" href="css/weather_map.css">
</head>
<body>
<header class="head">
<form id="citySearch">
<label for="search"></label><input type="text" name="search" id="search" placeholder="input city, state">
<button class="search">search</button>
</form>
<h1>Five-Day Forecast</h1>
</header>
<div class="container">
<section class="cards"></section>
<section id="map"></section>
</div>
<dialog id="dialog" class="dialog">
<section class="modal">
</section>
<form method="dialog">
<button>Close</button>
</form>
</dialog>
<script src="js/mapbox_utilities.js"></script>
<script src="js/keys.js"></script>
<script src="js/weather_map.js"></script>
</body>
</html>