-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.63 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Hamburger Menu </title>
</head>
<body>
<header class="landing">
<div class="container landing-inner">
<h1>City Map</h1>
<p> A quick and easy way to access information from cities located all over the world!
</p>
<footer class="footer">
<ul>
<li><a href=""></a>About</li>
<li><a href=""></a>Help</li>
<li><a href=""></a>Copywrite</li>
</ul>
</footer>
</div>
</header>
<div class="menu-wrap">
<input type="checkbox" class="toggler">
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<div>
<div class="cities">
<button class="dc active">Washington DC</button>
<div id='mapwash'></div>
<button class="ny active">New York</button>
<div id="mapny"></div>
<button class="mx active">Mexico City</button>
<div id="mapmx"></div>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAsURDi5hsUvQ8QUvGPb6Qmun1JoEeM41o&callback=initMap"
async defer></script>
</body>
</html>