-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (49 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#02ccba">
<link rel="manifest" href="/manifest.json">
<title>Restaurant Reviews</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<header>
<nav>
<h1><a href="/" id="home-page-link" aria-label="Home page link" >Restaurant Reviews</a></h1>
</nav>
</header>
<a class="skip-list" aria-label="skips to restaurant list" href="#restaurants-list">Skip to Restaurant Lists</a>
<a class="skip-list" aria-label="starts from map" href="#maincontent">Start From Map</a>
<main id="maincontent">
<section id="map-container" role="application" >
<div id="map" ></div>
</section>
<section>
<div class="filter-options">
<h2>Filter Results</h2>
<label class="filter-label" for="neighborhoods-select">
<select aria-label="Select neighborhoods" id="neighborhoods-select" name="neighborhoods">
<option value="all">All Neighborhoods</option>
</select></label>
<label class="filter-label" for="cuisines-select">
<select aria-label="Select Cuisines" id="cuisines-select" name="cuisines">
<option value="all">All Cuisines</option></label>
</select>
</div>
<section id="restaurants-list-container">
<ul id="restaurants-list">
</ul>
</section>
</section>
</main>
<footer id="footer">
Copyright (c) 2017 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<link rel="stylesheet" href="css/restaurant-listing.css">
<link rel="stylesheet" href="css/mobile.css">
<script defer src="dist/homepage.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBOFR4EChDaE3A1YLP7UK48bh7Buddgr9Y&callback=initMap"
type="text/javascript"></script>
</body>
</html>