forked from HackerUSA-CE/HTML-Restaurant-Menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
38 lines (37 loc) · 1.23 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Remember to link to your CSS file! -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- CONTACT PAGE -->
<!-- TODO: Navbar here -->
<nav>
<ul>
<li><a href="contact.html">Go to contact page</a></li>
<li><a href="about.html">Go to about me</a></li>
<li><a href="menu.html">Go to menu</a></li>
<li><a href="about.html">Go home</a></li>
</ul>
</nav>
<!-- TODO: Banner Image here-->
<img id="banner" alt="Banner logo" src="https://assets.simpleviewinc.com/simpleview/image/upload/c_fill,h_440,q_80,w_640/v1/clients/raleigh/165_3_0075_jpeg_7c7fb8e0-9d9c-4b7b-86a7-188fd83087a2.jpg">
<main>
<h2>Hours of Operation</h2>
<p>
<strong>Monday-Friday:</strong> 11:00am-8:30pm
</p>
<p>
<strong>Saturday-Sunday:</strong> 1:00pm-10:00pm
</p>
<h2>Contact Info</h2>
<p>
<strong>Phone Number:</strong> TBD
</p>
</main>
</body>
</html>