-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
94 lines (74 loc) · 2.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>24 Diner | Chef-Inspired Comfort Food</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="style.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<!--NAVIGATION - includes first row-->
<div id="background">
<div class="row">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<a href="#"><img src="24dinerlogo.png" /></a>
</li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li><a href="index.html"> Home </a></li>
<li><a href="food.html"> Food </a></li>
<li><a href="drink.html"> Drink </a></li>
<li><a href="about.html"> About </a></li>
<li><a href="contact.html"> Contact</a></li>
</ul>
</section>
</div>
</div>
<!--content of contact page-->
<div class="row">
<div class="small-4 columns">
<div class="panel">
<h3> Come Visit Us </h3>
<p> 600 N. Lamar Blvd <br />
Austin, Texas 78703 <br />
(512) 472-5400
</p>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="fluid-wrapper">
<iframe src="https://www.google.com/maps/place/24+Diner/@30.2716298,-97.7540427,17z/data=!3m1!4b1!4m2!3m1!1s0x8644b5125c05239b:0xbac8765cb819d389" width="640" height="480"></iframe>
</div>
</div>
</div>
<!-- footer-->
<div class="row">
<div class="large-12 columns">
<footer>
<div class="social media">
<a href="mailto:info@24diner.com"><img src="24dineremail.png" /></a>
<a href="http://www.facebook.com/24diner"><img src="24dinerfacebook.png" /></a>
<a href="http://www.twitter.com/24diner"><img src="24dinertwitter.png" /></a>
<a href="http://www.pinterest.com/24diner"><img src="24dinerpinterest.png" /></a>
<a href="https://www.google.com/maps/preview?q=24+diner+600+n+lamar+austin+78703+&ie=UTF8&hq=24+Diner&hnear=24+Diner,+600+N+Lamar+Blvd,+Austin,+Travis,+Texas+78703&z=14"><img src="24dinergoogle.png" /></a>
</div>
</footer>
</div>
</div>
<!--Javascript-->
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script src="js/foundation.orbit.js"></script>-
<script>
$(document).foundation();
</script>
</body>
</html>