-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
41 lines (36 loc) · 1.1 KB
/
index.htm
File metadata and controls
41 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Author: Chris Orser
Date: 4/10/2018
Filename: index.htm
-->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=page-width, initial-scale=1.0">
<title>Orser Diner - Landing Page</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div>
<header>
<h1>Welcome to the Orser Diner!</h1>
<img src="Banh_mi.jpg" width="258" height="147" />
</header>
<nav>
<ul>
<li><a href="index.htm">Home</a></li>
<li><a href="orderonline.htm">Order Online</a></li>
<li><a href="contact.htm">Contact Us</a></li>
</ul>
</nav>
<article>
<p>Thank you for visiting our website. The Orser Diner is a casual dining experience that mixes American classics with East Asian influences. Please click on the links above to access site features.</p>
</article>
<footer>
<p>Orser Diner • Ambler, PA</p>
</footer>
</div>
</body>
</html>