-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
40 lines (39 loc) · 821 Bytes
/
contact.html
File metadata and controls
40 lines (39 loc) · 821 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
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" type="text/css" href="hw3.css">
<style>
nav a {text-decoration: none;text-align:center; margin:auto;}
</style>
</head>
<header>
<div class="name">Groceries2U</div>
<hr/>
<nav>
<a href="index.html">Home</a>
<a href="service.html">Services</a>
<a href="contact.html">Contact Us</a>
</nav>
</header>
<body>
<div class="text">
<br/>
We're available in these locations:<br/>
<br/>
<ul class="container" style="padding-left:70">
<li>Boston, MA</li>
<li>New York, NY</li>
<li>Others coming soon!</li>
</ul>
<br/>
Contact Information:<br/><br/>
<p class="container">
Email: groceries2u@gmail.com
<br />
Phone: 123-456-7890
</p><br/>
</div>
</body>
<footer>
</footer>
</html>