-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
343 lines (319 loc) · 11.5 KB
/
index.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
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CDN -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<!-- Google Font CDN -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@300;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome CDN -->
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!-- Personalized Stylesheet -->
<link rel="stylesheet" href="./assets/css/styles.css" />
<title>Lima Bakery</title>
</head>
<body>
<header class="">
<section id="navbar ">
<nav class="navbar navbar-expand-lg navbar-dark colorNav">
<div class="container navbar-container-custom">
<a class="navbar-brand" href="#"
><img src="./assets/img/logo.png" alt="logo" class="logo" />Lima
Bakery</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#nosotros"
>Nosotros</a
>
</li>
<li class="nav-item">
<a
id="cart-navBar"
class="nav-link"
aria-current="page"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasRight"
href="#"
>Cart
<i id="cart-icon" class="fas fa-shopping-cart">
<div class="cart-count-circle">
<div id="cart-count" class="cart-count">0</div>
</div>
</i>
</a>
</li>
</ul>
</div>
</div>
</nav>
</section>
</header>
<section id="heroSection" class="heroSection">
<div class="hero">
<div class="container">
<img src="./assets/img/hero_section.jpeg" alt="" />
</div>
</div>
</section>
<section id="productos" class="productos container">
<div class="seccion-productos">
<div class="container col-custom">
<div class="row">
<div class="col-lg-4">
<h2 class="text-center">Desayuno</h2>
<div class="card p-0 card-product-custom card-custom btn-outline-success">
<a id="desayuno" class="productoBackground"> </a>
</div>
</div>
<div class="col-lg-4">
<h2 class="text-center">Almuerzo</h2>
<div class="card text-white p-0 card-product-custom card-custom">
<a id="almuerzo" class="productoBackground"> </a>
</div>
</div>
<div class="col-lg-4">
<h2 class="text-center">Cena</h2>
<div class="card text-white p-0 card-product-custom card-custom">
<a id="cena" class="productoBackground"> </a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="nosotros" class="nosotros">
<div style="height: 20vh"></div>
</section>
<!-- Shopping cart detail (Offcanvas) -->
<section class="shopping-cart">
<div class="shopping-cart" id="shopping-cart">
<div
class="offcanvas offcanvas-end"
tabindex="-1"
id="offcanvasRight"
aria-labelledby="offcanvasRightLabel"
>
<div class="offcanvas-header d-block">
<div class="d-flex justify-content-between align-items-center">
<h5 class="shoppingCart" id="offcanvasRightLabel">
Shopping Cart
</h5>
<button
type="button"
class="btn-close text-reset justify-content-end"
data-bs-dismiss="offcanvas"
aria-label="Close"
></button>
</div>
</div>
<div id="total-shopping-cart" class="total-shopping-cart">
<h3>Total a pagar</h3>
<div class="total-to-pay">
<h3>S/.</h3>
<h3 id="total-to-pay">0</h3>
</div>
</div>
</div>
</div>
</section>
<section id="nosotros" class="nosotros">
<div class="container d-flex align-items-center">
<img src="/assets/img/Nosotros.jpeg" alt="foto nosotros" />
<div>
<h2 style="text-align: center; font-weight: bold;">Nosotros</h2>
<h4 style="text-align: center; padding: 3%">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis vel
animi quod quisquam, autem consequuntur aut ipsum quas, a ullam
aliquid sint expedita amet eligendi?
</h2>
</div>
</div>
</section>
<footer>
<!-- Remove the container if you want to extend the Footer to full width. -->
<div class="container my-5">
<!-- Footer -->
<footer class="text-center text-lg-start">
<!-- Grid container -->
<div class="container p-4 pb-0">
<!-- Section: Links -->
<section class="">
<!--Grid row-->
<div class="row">
<!-- Grid column -->
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">
Lima Bakery
</h6>
<p>Date un gusto</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none" />
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Products</h6>
<p>
<a>Home</a>
</p>
<p>
<a>Nuestra Carta</a>
</p>
<p>
<a>Nosotros</a>
</p>
<p>
<a>Contactanos</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none" />
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none" />
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Contact</h6>
<p><i class="fas fa-home mr-3"></i> Lima - Peru</p>
<p><i class="fas fa-envelope mr-3"></i> [email protected]</p>
<p><i class="fas fa-phone mr-3"></i> + 01 234 567 88</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">
Follow us
</h6>
<!-- Facebook -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #3b5998"
href="#!"
role="button"
><i class="fab fa-facebook-f"></i
></a>
<!-- Twitter -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #55acee"
href="#!"
role="button"
><i class="fab fa-twitter"></i
></a>
<!-- Google -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #dd4b39"
href="#!"
role="button"
><i class="fab fa-google"></i
></a>
<!-- Instagram -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #ac2bac"
href="#!"
role="button"
><i class="fab fa-instagram"></i
></a>
<!-- Linkedin -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #0082ca"
href="#!"
role="button"
><i class="fab fa-linkedin-in"></i
></a>
<!-- Github -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #333333"
href="#!"
role="button"
><i class="fab fa-github"></i
></a>
</div>
</div>
<!--Grid row-->
</section>
<!-- Section: Links -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div
class="text-center p-3"
style="background-color: rgba(0, 0, 0, 0.2)"
>
© 2021 Copyright:
<a class="text-white" href="https://github.com/Bayzon88/"
>Alvaro Beltran</a
>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</div>
<!-- End of .container -->
</footer>
</body>
<!-- Jquery CDN -->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"
></script>
<!-- Bootstrap CDN -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
<!-- Custom JS -->
<script src="/cardElements.js"></script>
</html>
<!-- <div class="shopping-cart__item">
<h5>Nombre producto</h5>
<div class="d-flex">
<img src="" alt="imagen del producto" width="1rem" height="1rem" />
<h3>Cantidad producto</h3>
<button type="button">Quitar</button>
</div>
</div> -->