-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
247 lines (217 loc) · 9.77 KB
/
index.html
File metadata and controls
247 lines (217 loc) · 9.77 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>FoodU</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/shop-homepage.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="img/logo.png" type="image/png" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<img id="logo" src="img/logo_transparent.png" />
<a class="navbar-brand" href="index.html">FoodU</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="menu.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-lg-3">
<h1 id="choice" class="my-5 ubuntu">Your choice</h1>
<div class="list-group">
<a href="burger.html" class="list-group-item ubuntu">Burger</a>
<a href="pizza.html" class="list-group-item ubuntu">Pizza</a>
<a href="sandwich.html" class="list-group-item ubuntu">Sandwich</a>
<a href="designfood.html" class="list-group-item list-group-item-danger ubuntu">Design your food!</a>
</div>
</div>
<!-- /.col-lg-3 -->
<div class="col-lg-9">
<div id="carouselExampleIndicators" class="carousel slide my-5" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="text-holder">
<img class="d-block img-fluid cover" src="img/burger.jpg" alt="First slide">
<div class="bottom-left ubuntu">Delicious burgers..</div>
</div>
</div>
<div class="carousel-item">
<div class="text-holder">
<img class="d-block img-fluid cover" src="img/pizza.jpg" alt="Second slide">
<div class="bottom-left ubuntu">Just like in Italy..</div>
</div>
</div>
<div class="carousel-item">
<div class="text-holder">
<img class="d-block img-fluid cover" src="img/sandwich.jpg" alt="Third slide">
<div class="bottom-left ubuntu">Feels like home..</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<h1 class="text-center my-4">Top picks for this week</h1>
<div class="row">
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100 pink">
<a href="#"><img class="card-img-top promotion" src="img/burger_1.jpg" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="burger.html">Chicago Burger</a>
</h4>
<h5>9.99$</h5>
<small>Pizza Garden</small>
<p class="card-text">With cheese, lettuce, BBQ sauce, onion.</p>
</div>
<div class="card-footer">
<small>★ ★ ★ ★ ☆</small>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100 pink">
<a href="#"><img class="card-img-top promotion" src="img/pizza_1.jpg" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="pizza.html">Pepperoni Pizza</a>
</h4>
<h5>8.99$</h5>
<small>Restaurant Kurtishi</small>
<p class="card-text">With cheese, tomatoe sauce, pepperoni.</p>
</div>
<div class="card-footer">
<small>★ ★ ★ ☆ ☆</small>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100 pink">
<a href="#"><img class="card-img-top promotion" src="img/sandwich_1.jpg" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="sandwich.html">Club Sandwich</a>
</h4>
<h5>5.99$</h5>
<small>M house</small>
<p class="card-text">With cheese, lettuce, tomatoes, salami, onion.</p>
</div>
<div class="card-footer">
<small>★ ★ ★ ☆ ☆</small>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100 pink">
<a href="#"><img class="card-img-top promotion" src="img/burger_2.jpg" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="burger.html#item_two">Garden Burger</a>
</h4>
<h5>7.99$</h5>
<small>Pizza Garden</small>
<p class="card-text">With pickles, onion, tomaotes, lettuce, ketchup.</p>
</div>
<div class="card-footer">
<small>★ ★ ★ ★ ★</small>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100 pink">
<a href="#"><img class="card-img-top promotion" src="img/sandwich_2.jpg" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="sandwich.html#item_two_sandwich">Egg Sandwich</a>
</h4>
<h5>8.99$</h5>
<small>Fratteli</small>
<p class="card-text">With tomatoes, lettuce, egg.</p>
</div>
<div class="card-footer">
<small>★ ★ ★ ★ ☆</small>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card h-100 pink">
<a href="#"><img class="card-img-top promotion" src="img/pizza_2.jpg" alt=""></a>
<div class="card-body">
<h4 class="card-title">
<a href="pizza.html#item_two_pizza">Mixed Pizza</a>
</h4>
<h5>10.99$</h5>
<small>Pizza Garden</small>
<p class="card-text">with cheese, tomatoe sauce, olives, pepperoni, mushroom, pepper.</p>
</div>
<div class="card-footer">
<small>★ ★ ☆ ☆ ☆</small>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.col-lg-9 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<div class="center">
<a href="https://www.facebook.com/" class="fa fa-facebook"></a>
<a href="https://twitter.com/" class="fa fa-twitter"></a>
<a href="https://www.google.com/" class="fa fa-google"></a>
<a href="https://www.youtube.com/" class="fa fa-youtube"></a>
<a href="https://www.instagram.com/" class="fa fa-instagram"></a>
<a href="https://vimeo.com/" class="fa fa-vimeo"></a>
</div>
<p id="copyright" class="text-center text-white">Copyright © FoodU</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>