-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
172 lines (153 loc) · 4.66 KB
/
Copy pathmenu.html
File metadata and controls
172 lines (153 loc) · 4.66 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html>
<head>
<title>Bojangle's Delights</title>
<link href="restaurantStyle.css" rel="stylesheet" type="text/css"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<noscript> This website works best with Javascript enabled. Plese go to http://www.enable-javascript.com to enable JavaScript in your browser. </noscript>
<style>
body {
background-color: #EAEDED;
}
table, th, td{
padding:5px 10px 5px 10px;
}
#Und{
text-decoration: underline;
}
#foodTitle{
font-size: 20px;
text-align: center;
font-weight: bold;
}
#foodDes{
text-align: center;
}
#Beverages{
width: 100%;
}
#Beverages:nth-child(odd){
background-color: white;
;
}
table{
width: 100%
}
</style>
</head>
<body>
<div id="title">
<h1 style="text-align: center;">Bojangle's Delights</h1>
</div>
<hr />
<div class="container-fluid" id="navigation">
<ul class="nav nav-pills">
<li><a href="restaurantHome.html"><span class="glyphicon glyphicon-home"></span></a></li>
<li class="active"><a href="menu.html">Menu</a></li>
<li><a href="contactUs.html">Contact Us</a></li>
</ul>
</div>
<hr />
<div class="container-fluid"
<table class="table">
<tr>
<div id="foodDes" class="row">
<div class="col-sm-auto col-md-4">
<td>
<p id="foodTitle">Burgers and Fries!</p><br />
An American Classic!<br />
Your choice - with or without cheese<br />
Pickle, onion, lettuce, and tomato<br />
Served with our famous thick cut<br/>
french fries<br/>
$7.95</td>
</div>
<div class="col-sm-auto col-md-4">
<td>
<p id="foodTitle">Hot Dog and Chips</p><br />
A Summer Classic!<br />
Your choice - white or wheat bun<br />
Relish, mustard, and ketchup<br />
Served with our house made chips<br/>
$7.95</td>
</div>
<div id="foodDes" class="col-sm-auto col-md-4">
<td>
<p id="foodTitle">Italian Sausage and Peppers</p><br />
An All-Time Favorite!!<br />
Your choice - mild or spicy<br />
Coleslaw<br />
Served with garlic mashers<br/>
$10.95</td>
</div>
</div>
</tr>
<tr>
<div id="foodDes" class="row">
<div class="col-sm-auto col-md-4">
<td>
<p id="foodTitle">Tenderloin Sandwich and Chips</p><br />
Really Hits the Spot!<br />
Plain or Seasame Seed Bun<br />
Pickle, onion, lettuce, and tomato<br />
Served with our house-made chips<br/>
$8.95</td>
</div>
<div class="col-sm-auto col-md-4">
<td>
<p id="foodTitle">House Salad</p><br />
On The Lighter Side<br />
Your choice - with or without cheese<br />
Iceburg Lettuce, tomoatoes, peppers<br />
Thousand Island or Ranch Dressing<br/>
Served with a dinner roll<br/>
$6.95</td>
</div>
<div class="col-sm-auto col-md-4">
<td>
<p id="foodTitle">Brisket Sandwich and Fries</p><br />
A Taste of Texas!<br />
Smoked Brisket on thick cut Texas Toast<br />
Coleslaw<br />
Served with our famous thick cut<br/>
french fries<br/>
$7.95</td>
</div>
</div>
</tr>
</table>
</div> <!-- ends table -->
</div>
</div>
<br />
<br/>
<table >
<tr id="Beverages">
<td id="Und">Beverages</td>
<td> </td>
</tr>
<tr>
<td>Root Beer</td>
<td>$3.00</td>
</tr>
<tr id="Beverages">
<td>Bottled Water</td>
<td>$1.75</td>
</tr>
<tr>
<td>Lemonade</td>
<td>$1.00</td>
</tr>
<tr id="Beverages">
<td>Iced Tea</td>
<td>$1.25</td>
</tr>
</table>
</body>
<hr />
<footer id="footer" style="text-align: center;">
<p>Bojangle Drive, Beijing, China, 5021987</p>
<p>102983374058</p>
</footer>
</html>