forked from sjxliu/lab-2.3.2-restaurant-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
54 lines (51 loc) · 1.67 KB
/
Copy pathabout.html
File metadata and controls
54 lines (51 loc) · 1.67 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- TODO: Navbar here -->
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="menu.html">Menu</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<img id="banner" img src="assets/images/banner.png"
alt="H-Thai-ML logo">
<main>
<!-- About page code here -->
<h1>About Us</h1>
<h2>Locations</h2>
<ul>
<li><strong>Albany Park</strong><em> our flagship location</em></li>
<li><u>Logan</u> Square</li>
<li>Bucktown</li>
<li>Linclon Park</li>
</ul>
<h2>Origin Story</h2>
<img id="about" img src="assets/images/about.jpg"
alt="Bowls filled with Thai spices">
<p>Welcome to H-Thai-Ml! We are a small limited menu Thai restaurant
with four locations located in Chicago's Northwest Side. Our flagship Albany Park location
opened in 2019 and we have since expanded rapidly to meet the Thai
food needs of Chicago's Northwest Side. We were inspired to open because
there is nothig better than some spicy Thai food when everything around you is
literally frozen.
</p>
</main>
</body>
</html>