-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestaurant.html
63 lines (59 loc) · 2.79 KB
/
restaurant.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Normalize.css for better cross-browser consistency -->
<link rel="stylesheet" src="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" />
<!-- Main CSS file -->
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin=""/>
<title>Restaurant Info</title>
</head>
<body>
<header id="header">
<nav>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
</header>
<!-- main section -->
<main id="inside" class="maincontent" role="main" aria-labelledby="maincontent_label">
<label id="maincontent_label" class="aria-label">Main Content</label>
<ul id="breadcrumb" >
<li><a href="/">Home</a></li>
</ul>
<section id="map-container2" role="application" aria-hidden="true" aria-labelledby="aria-map-description">
<div id="map" role="application" aria-hidden="true" aria-labelledby="aria-map-description"></div>
<label id="aria-map-description" class="aria-label">map user interface</label>
</section>
<!-- restaurant section -->
<section id="restaurant-container" aria-labelledby="container_label">
<label id="container_label" class="aria-label">Section Restaurant Information</label>
<h2 id="restaurant-name"></h2>
<img id="restaurant-img">
<p id="restaurant-cuisine" aria-labelledby="cuisine_label"></p>
<label id="cuisine_label" class="aria-label">Restaurant Cuisine</label>
<p id="restaurant-address" aria-labelledby="address_label"></p>
<label id="hours_label" class="aria-label">Restaurant Hours</label>
<table id="restaurant-hours" aria-labelledby="hours_label"></table>
<label id="hours_label" class="aria-label">Restaurant Hours</label>
</section>
<!-- reviews section -->
<section id="reviews-container">
<ul id="reviews-list"></ul>
</section>
</main>
<!-- End main -->
<!-- Beginning footer -->
<footer id="footer">
Copyright (c) 2019 Basil Jarjawi <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<!-- End footer -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></script>
<!-- Beginning scripts -->
<!-- Database helpers -->
<script type="text/javascript" src="js/dbhelper.js"></script>
<!-- Main javascript file -->
<script type="text/javascript" src="js/restaurant_info.js"></script>
</body>
</html>