This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
129 lines (119 loc) · 5.43 KB
/
Copy pathcontact.html
File metadata and controls
129 lines (119 loc) · 5.43 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>Contact | Emily's Diner</title>
<script type="text/javascript" src="js/jquery-3.2.0.min.js"></script>
<!-- link to javascript boostrap framework -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<h1 class="col-xs-12"><strong>C</strong>ontact Us</h1>
</div>
</header>
<nav class="navbar ">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<strong><a class="navbar-brand">Emily's Diner</a></strong>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Our Menu</a></li>
<li class="active"><a href="contact.html">Contact Us</a></li>
<li><a href="catering.html">Emily's Catering</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="row">
<address class= "col-xs-6">
<strong>Visit Us</strong><br>
45 Unkown Street<br>
Nowhereville, NY 00000<br><br>
<strong>Call Us</strong><br>
<abbr title="Phone">P:</abbr> 555-555-5555<br><br>
<strong>Send Us an Email</strong><br>
<abbr title="Email">E:</abbr> Emily.Diner@gmail.com
</address>
<address class= "col-xs-6">
<strong>Our Hours</strong><br>
<abbr title="Sunday">Su:</abbr> Closed<br>
<abbr title="Monday">M:</abbr> Closed <br>
<abbr title="Tuesday">T:</abbr> 9am-7pm <br>
<abbr title="Wednesday">W:</abbr> 9am-7pm <br>
<abbr title="Thursday">Th:</abbr> 9am-7pm <br>
<abbr title="Friday">F:</abbr> 12pm-11pm <br>
<abbr title="Saturday">Sa:</abbr> 12pm-11pm <br>
</address>
</div><!--address row -->
<h3 class="col-xs-12">Send Us a Message from Here</h3>
<div class="col-md-4 input-group">
<input type="text" class="form-control" placeholder="Your Name" aria-describedby="basic-addon1">
</div><br/>
<div class="col-md-4 input-group">
<input type="text" class="form-control" placeholder="Your Email" aria-describedby="basic-addon1">
</div><br/>
<div class="input-group col-xs-8">
<input type="text" id="message" class="form-control" placeholder="Your Message" aria-describedby="basic-addon1">
</div><br>
<button class="btn">Send</button>
<article id="quotes">
<h2>Customer Reviews</h2>
<blockquote>
<p>Emily's Diner catered my 10 year old daughter's birthday and my anniversary party. The staff made each event feel unique while catering to mine and my guests needs. A very professional company. I will be going to Emily's Diner again!
</p>
<footer>Satisfied Customer</footer>
</blockquote>
<blockquote>
<p>A company that truly knows what they are doing. The chefs are amazing at creating new, unique dishes that keep regulars coming back to the restaurant. The atmosphere is warm and family friendly, with the food you would expect at a five star restaurant.</p>
<footer>Satisfied Customer</footer>
</blockquote>
<blockquote id="last">
<p>I used to go to Emily's Diner every Saturday for dinner when I was a kid. When I moved away to college, I missed that family tradition. Not only does the diner have delicious food, but the whole restaurant, including the staff, is so homey. I cannot wait to go back when I visit home.</p>
<footer>Satisfied Customer</footer>
</blockquote>
</article>
<footer>
<p class="col-md-8">
Copyright © 2017 All rights reserved
</p>
<div class="col-md-4 social_media">
<a href="http://www.facebook.com">
<img src="images/facebook.jpg" />
</a>
<a href="http://twitter.com">
<img src="images/twitter.jpg" />
</a>
<a href="http://instagram.com">
<img src="images/insta.jpg" />
</a>
</div> <!--col-xs-4 social_media -->
</footer>
</div> <!--container-->
</body>
<div id="coFrameDiv" style="height:0px;display:none;">
<iframe id="coToolbarFrame" src="chrome-extension://cjabmdjcfcfdmffimndhafhblfmpjdpe/toolbar/placeholder.html" style="height: 0px; width: 100%; display: none;"></iframe>
</div>
</html>