-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecialoffers.html
146 lines (143 loc) · 7.76 KB
/
Specialoffers.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="Style.css">
<title>Special Offers-Welcome to Sal's Pizza</title>
</head>
<body>
<div class="container">
<h1 style="color: white; padding: 2%">Welcome to Sal's Pizza!</h1>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="index.html">HOME</a></li>
<li ><a href="lunchSpecial.html">LUNCH SPECIALS</a></li>
<li ><a href="NyStylePizza.html">TRADITIONAL NY PIZZA</a></li>
<li><a href="stromboli.html">STROMBOLI & CALZONES</a></li>
<li><a href="whitePizza.html">GOURMET BIANCA PIZZAS</a></li>
<li><a href="CheeseSteaks.html">PHILLY CHEESESTEAKS</a></li>
<li><a href="ColdSub.html">COLD SUBS</a></li>
<li><a href="HotSub.html">HOT SUBS</a></li>
<li><a href="Salad.html">SALADS</a></li>
<li ><a href="Appetizer.html">APPETIZERS</a></li>
<li><a href="Dessert.html">DESSERTS</a></li>
<li class="active"><a href="Specialoffers.html">SPECIALS OFFERS</a></li>
<li ><a href="Burger&Sandwich.html">BURGERS & SANDWICHES</a></li>
<li ><a href="NyWrap.html">NY WRAPS</a></li>
<li ><a href="Entrees.html">ENTRÉES</a></li>
<li ><a href="BakedEntrees.html">BAKED ENTRÉES</a></li>
<li ><a href="Soup.html">SOUP OF THE DAY</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h2>Special Offers</h2>
<img src="Images/lunchspecial.jpg" class="img-responsive" alt="Specialoffers"><br>
<p><b>Note:</b>(Pick-Up or Delivery Only)
With coupon only. Limited time only.
Not to be combined with any other special offer
or coupon. Must mention coupon when placing
order. Extra charge for additional toppings</p>
<div style="width: 100%">
<table class="table">
<thead>
<tr>
<th>Offers</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2"><b>House Special</b></td>
</tr>
<tr>
<td>1-18” 1-Topping Pizza,
10 Wings OR Appetizer
Garlic Knots
& 2-Liter Soda</td>
<td>21.99 + tax</td>
</tr>
<tr>
<td>14” 1-Topping Pizza,
6 Wings & Garlic Knots
</td>
<td>16.99 + tax</td>
</tr>
<tr>
<td>2-14” 1-Topping Pizzas,
10 Wings OR Any
Appetizer, Garlic Knots
& 2-Liter Soda</td>
<td>27.99 + tax</td>
</tr>
<tr>
<td colspan="2"><b>Sal's Special</b></td>
</tr>
<tr>
<td>2-18” 1-Topping Pizzas
& 2-Liter Soda</td>
<td>29.99 + tax</td>
</tr>
<tr>
<td>3-14” Pizzas
1 Topping Each</td>
<td>25.99 + tax</td>
</tr>
<tr>
<td>1-18” X-Lg. Pizza
& Garlic Knots <br><b>Note:</b>CARRY OUT ONLY</td>
<td>13.99 + tax</td>
</tr>
<tr>
<td colspan="2"><b>FAMILY SPECIAL</b></td>
</tr>
<tr>
<td>2-18” Pizzas
1-Topping Each,
20 Wings or
Any 2 Appetizers
& 2-Liter Soda</td>
<td>39.99 + tax</td>
</tr>
<tr>
<td>2 Pasta Dinners
with Garlic Bread
& 2 Side Salads</td>
<td>19.99 + tax</td>
</tr>
<tr>
<td>Any 2 Strombolis
or Calzones (2 Toppings),
French Fries &
One 2-Liter Soda</td>
<td>19.99 + tax</td>
</tr>
<tr>
<td>Any 2 Subs,
French Fries
& 2-Liter Soda</td>
<td>19.99 + tax</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>