-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.htm
More file actions
42 lines (37 loc) · 1003 Bytes
/
contact.htm
File metadata and controls
42 lines (37 loc) · 1003 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Author: Chris Orser
Date: 4/10/2018
Filename: contact.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>Contact the Orser Diner</h1>
<img src="Kaeng_phet_mu.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>Phone: 610-xxx-xxxx</p>
<p>Email: Orserdiner@gmail.com</p>
</article>
<footer>
<p>Orser Diner • Ambler, PA</p>
</footer>
</div>
</body>
</html>