-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactUs
76 lines (67 loc) · 2.87 KB
/
contactUs
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
<!DOCTYPE html>
<html>
<head>
<link href="RestaurantStyles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<style>
div.a {
line-height: 1.8; font-weight: bold}
a:hover {
color: #FF5733; /* chay33 by annapashmina – colourlovers.com */
} a:hover {font-weight: bold;}
</style>
<title>Carroll's Restaurant</title>
<h1> Carroll's Restaurant</h1>
<hr>
<ul class="nav nav-pills">
<li><a href="carrollRestuarantHome.html"><span class="glyphicon glyphicon-home"></span></a></li>
<li><a href="carrollMenu.html">Menu</a></li>
<li class="active"><a href="contactUs.html">Contact Us</a></li>
</ul>
<hr><br>
<body>
<div class="container">
<form name="displayEven" onsubmit="validateItems()">
<div class="form-group row">
<label for="Name" class="col-sm-2 col-form-label">Name :</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="Name">
</div>
</div>
<div class="form-group row">
<label for="Name" class="col-sm-2 col-form-label">Email :</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="Email">
</div>
</div>
<div class="form-group row">
<label for="Name" class="col-sm-2 col-form-label">Phone :</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="Phone">
</div>
</div>
<div class="form-group row">
<label for="Name" class="col-sm-2 col-form-label"></label>
<select id="reasonForInquiry" class="form-control">
<option selected>Catering</option>
<option>Private Party</option>
<option>Feedback</option>
<option>Other</option>
</select>
</div>
Additional Information: <textarea name="briefDescription"></textarea><br/>
Have you been to the restaurant? <input type="radio" name="answer" value="No" checked/>No <input type="radio" name="answer" value="Yes"/>Yes <br>
Best days to contact you: <input type="checkbox" name="myChoices" value="Monday"/>M <input type="checkbox" name="myChoices" value="Tuesday"/>T <input type="checkbox" name="myChoices" value="Wednesday"/>W <input type="checkbox" name="myChoices" value="Thursday"/>Th <input type="checkbox" name="myChoices" value="Friday"/>F <br>
<input type="submit" value="Send Request"/>
<hr>
<footer><p>7109 Greenville Ave., Dallas, TX, 75219</p>
<p>214-741-2232</p>
</p>
</footer>
</body>
</html>