-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
38 lines (38 loc) · 1.24 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
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Rooster's Menu</title>
<meta name="description" content="decription of menu">
<script type="text/javascript" src="index.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<div class="header">
<div class="dropdown" data-dropdown>
<button class="link" data-dropdown-button> Menu</button>
<div class="dropdown-menu">
<div class="dropdown-links">
<a class="link" href="menu.html">Menu</a>
<a class="link" href="sauces.html">Sauces</a>
<a class="link" href="catering.html">Catering</a>
<a class="link" href="contact.html">Contact</a>
</div>
</div>
</div>
</div>
<br>
<img src="images/rudy.jpg">
<br>
<section>
<h3>1 Baker Street<br>
Mohegan Lake, NY 10547<br>
E: [email protected]<br>
P: 914.743.1797
</h3>
</section>
<div class="map">
<div class="gmap"><iframe width="600" height="500"
src="https://maps.google.com/maps?q=1%20baker%20street%20&t=&z=13&ie=UTF8&iwloc=&output=embed"
></iframe>
</div>
</div>
</html>