-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestaurant.html
99 lines (94 loc) · 3.68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="Description" content="Author: Restaurant Reviews, Category: Food, Length: 2 pages">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 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" media="leaflet" onload="this.media='all'" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin="" />
<link rel="stylesheet" media="styles" href="dist/css/styles.min.css" onload="this.media='all'">
<title>Restaurant Info</title>
</head>
<body class="inside">
<!-- Beginning header -->
<a href="#footer" class="skip-link">Skip map section to footer</a>
<header>
<!-- Beginning nav -->
<nav>
<h1>
<a href="/">Restaurant Reviews</a>
</h1>
</nav>
<!-- Beginning breadcrumb -->
<ul id="breadcrumb" role="breadcrumb" aria-label="breadcrumb">
<li>
<a href="/">Home</a>
</li>
</ul>
<!-- End breadcrumb -->
<!-- End nav -->
</header>
<!-- End header -->
<!-- Beginning main -->
<main id="maincontent">
<!-- Beginning map -->
<section id="map-container">
<div id="map" role="application" aria-label="map for locating restaurants, please use arrow keys to move the map accordingly"></div>
</section>
<!-- End map -->
<!-- Beginning restaurant -->
<section id="restaurant-container">
<h2 id="restaurant-name"></h2>
<picture id="restaurant-picture"></picture>
<p id="restaurant-cuisine"></p>
<p id="restaurant-address"></p>
<table id="restaurant-hours"></table>
</section>
<!-- end restaurant -->
<!-- Beginning reviews -->
<section id="reviews-container">
<ul id="reviews-list"></ul>
<section class="review-input">
<h2> Write A Review </h2>
<form class="review-form">
<section class="review-form-top">
<input class="review-form-name review-form-input" name="name" aria-label="Enter your name" type="text"
placeholder="Your Name">
<input class="review-form-rating review-form-input" name="rating" aria-label="Enter restaurant rating" type="number"
placeholder="Rating">
</section>
<p class="review-form-comments review-form-input" contenteditable="true" name="comments" role="textbox"
aria-label="Enter your comments">Enter Comments</p>
<button type="button" name="submit" class="btn-submit-review"> SUBMIT REVIEW </button>
</form>
</section>
</section>
<!-- End reviews -->
</main>
<!-- End main -->
<!-- Beginning footer -->
<footer id="footer">
Copyright (c) 2018
<a href="/">
<strong>Restaurant Reviews</strong>
</a> All Rights Reserved.
</footer>
<section class="toast reviews-toast hide"></section>
<!-- End footer -->
<script defer 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> -->
<script defer type="text/javascript" src="dist/js/restaurant.min.js"></script>
<noscript>
JavaScript is required to be enabled to run this application.
</noscript>
</body>
</html>