-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact.html
28 lines (28 loc) · 1.13 KB
/
contact.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
28
<!doctype html>
<html>
<head>
<title>Nick's Beef Jerky Company</title>
<link href='http://fonts.googleapis.com/css?family=Russo+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen" />
</head>
<body>
<div class="container">
<h1>Nick's Beef Jerky business</h1>
<!-- navbar -->
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="products.html">Products</a></li>
</ul>
<!-- navbar -->
<p>We love to hear from our customers! Here are a few ways you can get in touch with us:</p>
<ol>
<li>Call us on the Phone: <a href="tel:859-472-4219">859-472-4219</a></li>
<li>Email us: <a href="mailto:[email protected]?subject=Jerky Time">[email protected]</a></li>
<li>Fill out this form:</li>
</ol>
<iframe src="https://docs.google.com/forms/d/1qdS7S4NEp4Vud0wOtTuJq7jT7JxNvgV_lH3tBXTxzaE/viewform?embedded=true" width="680" height="631" frameborder="0" marginheight="0" marginwidth="0" scrolling="no">Loading...</iframe>
</div>
</body>
</html>