-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurant.html
More file actions
executable file
·54 lines (47 loc) · 1.74 KB
/
restaurant.html
File metadata and controls
executable file
·54 lines (47 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<!-- Normalize.css for better cross-browser consistency -->
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<!-- Main CSS file -->
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Open+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Info</title>
</head>
<body class="inside">
<header>
<nav>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
<ul id="breadcrumb" aria-label="Breadcrumb">
<li><a href="/">Home</a></li>
</ul>
</header>
<main id="maincontent">
<div class="restaurant-wrapper">
<section id="restaurant-container">
<h2 id="restaurant-name"></h2>
<img id="restaurant-img">
<p id="restaurant-cuisine"></p>
<p id="restaurant-address"></p>
</section>
<section id="restaurant-hours-table">
<table id="restaurant-hours" aria-label="Opening hours"></table>
</section>
<section id="reviews-container">
<ul id="reviews-list"></ul>
</section>
<section id="map-container">
<div id="map" aria-label="Location" role="application"></div>
</section>
</div>
</main>
<footer id="footer">
Copyright (c) 2017 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<script type="text/javascript" src="js/dbhelper.js"></script>
<script type="text/javascript" src="js/restaurant_info.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBNZHQSi3y7XeXWidxPBPbW_axlPXmw34s&libraries=places&callback=initMap"></script>
</body>
</html>