forked from HackerUSA-CE/HTML-Restaurant-Menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 968 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>H-Thai-ML</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<!-- HOME 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>
<h1>H-Thai-ML</h1>
<!-- TODO: Home page code here-->
</main>
</body>
</html>