forked from HackerUSA-CE/HTML-Restaurant-Menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
40 lines (39 loc) · 1.56 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zach's Thai Food</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- ABOUT PAGE -->
<p>The menu at Thaiphoon Bistro has been crafted one dish at a time, perfecting each recipe along the way to encompass cuisine from every region in Thailand.</p>
<!-- 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">
<div class="service">
<h3>Dine in</h3>
</div>
<main>
<!-- About page code here -->
<h1>Zach's Thaiphoon Bistro - The greatest culinary experience</h1>
<h2>Curry originally developed for NASA that didnt make it outside of earth</h2>
<ul>
<li>Cary</li>
<li>Raleigh</li>
<li>Durham</li>
<li>Chapel Hill</li>
</ul>
<p>Raleigh is our flagship location. We've made this our headquarters do to the sheer volume of people</p>
</main>
</body>
</html>