-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
626 lines (591 loc) · 33.5 KB
/
index.html
File metadata and controls
626 lines (591 loc) · 33.5 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
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Starbucks Coffee Company</title>
<link rel="shortcut icon" href="./assets/media/logo.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!--HEADER-->
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container py-2">
<a class="navbar-brand me-5" href="/index.html">
<img src="/assets/media/logo.png" alt="logo starbucks">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasExample">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active ff-SoDoSans-SemiBold fs-90 me-3 text-green-hover" aria-current="page"
href="./menu.html">
<strong>
MENU
</strong>
</a>
</li>
<li class="nav-item">
<a class="nav-link active ff-SoDoSans-SemiBold fs-90 me-3 text-green-hover" aria-current="page"
href="#">
<strong>
REWARDS
</strong>
</a>
</li>
<li class="nav-item">
<a class="nav-link active ff-SoDoSans-SemiBold fs-90 text-green-hover" aria-current="page"
href="#">
<strong>
GIFT CARDS
</strong>
</a>
</li>
</ul>
<div class="d-flex align-items-center">
<a href="" class="nav-link-sb me-5 d-flex align-items-center">
<ion-icon name="location-sharp"></ion-icon>
<span><strong>Find a store</strong></span>
</a>
<button class="btn-white me-3">
Sign in
</button>
<button class="btn-black">
Join now
</button>
</div>
</div>
</div>
</nav>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasExample" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header p-2">
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body p-2">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active ff-SoDoSans-Regular fs-off-canvas text-green-hover" aria-current="page"
href="/menu.html">
Menu
</a>
</li>
<li class="nav-item">
<a class="nav-link active ff-SoDoSans-Regular fs-off-canvas text-green-hover" aria-current="page"
href="#">
Rewards
</a>
</li>
<li class="nav-item">
<a class="nav-link active ff-SoDoSans-Regular fs-off-canvas text-green-hover" aria-current="page"
href="#">
Gift cards
</a>
</li>
</ul>
<hr>
<div>
<button class="btn-white me-3">
Sign in
</button>
<button class="btn-black">
Join now
</button>
<a href="" class="nav-link-sb d-block pt-4 align-items-center">
<ion-icon name="location-sharp"></ion-icon>
<span><strong>Find a store</strong></span>
</a>
</div>
</div>
</div>
<!--HEADER-->
<!--MAIN-->
<main class="mt-5">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12" style="background-image: url(./assets/media/home/1.webp);
background-size: cover;
background-position: center;
height: 600px;">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 card-sb" style="background-color: #06ce8d;">
<div class="d-flex justify-content-center align-items-center flex-column w-100 h-100">
<h2 class="fs-2-5 ff-SoDoSans-SemiBold text-center">30% off gifts <br>they’ll love</h2>
<span class="color-span1 text-center mb-4">Save on festive drinkware and more. Add a <br>gift
card and make it a thoughtful gift.*</span>
<button class="btn-red">
<strong>Find store</strong>
</button>
</div>
</div>
</div>
</div>
<div class="container pt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 card-sb" style="background-color: #d50032;;">
<div class="d-flex justify-content-center align-items-center flex-column w-100 h-100">
<h2 class="fs-2-5-home2 ff-SoDoSans-SemiBold text-center">For everyone on <br>your list</h2>
<span class="color-span2 text-center mb-4">A Starbucks eGift is a present everyone will
<br>love. Choose a festive design and share a <br>little holiday cheer.</span>
<button class="btn-other">
<strong>Send an eGift</strong>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12" style="background-image: url(./assets/media/home/2.webp);
background-size: cover;
background-position: center;
height: 580px;">
</div>
</div>
</div>
<div class="container pt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12" style="background-image: url(./assets/media/home/3.webp);
background-size: cover;
background-position: center;
height: 580px;">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 card-sb" style="background-color: #d50032;;">
<div class="d-flex justify-content-center align-items-center flex-column w-100 h-100">
<h2 class="fs-2-5-home2 ff-SoDoSans-SemiBold text-center">Our holiday game<br>is here to play
</h2>
<span class="color-span2 text-center mb-4">Pop in for chances to win $20,000 in Delta<br>Gift
Cards or Starbucks for Life!**</span>
<button class="btn-other">
<strong>Play now</strong>
</button>
</div>
</div>
</div>
</div>
<div class="container pt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 card-sb" style="background-color: #0b7a55;">
<div class="d-flex justify-content-center align-items-center flex-column w-100 h-100">
<h2 class="fs-2-5-home2 ff-SoDoSans-SemiBold text-center">New to the nice list</h2>
<span class="color-span2 text-center mb-4">Celebrate the season with a new
refreshingly<br>festive Cran-Merry Orange Lemonade<br>Refresher or Cran-Merry Drink.</span>
<button class="btn-other">
<strong>Order now</strong>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12" style="background-image: url(./assets/media/home/4.webp);
background-size: cover;
background-position: center;
height: 600px;">
</div>
</div>
</div>
<div class="container pt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12" style="background-image: url(./assets/media/home/5.webp);
background-size: cover;
background-position: center;
height: 350px;">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 card-sb" style="background-color: #f2f0eb;">
<div class="d-flex justify-content-center align-items-center flex-column w-100 h-100">
<h2 class="fs-2-5-home3 ff-SoDoSans-SemiBold text-center">Your cheer is here</h2>
<span class="color-span3 text-center mb-4">Join Starbucks® Rewards and get a <strong>free
drink</strong> with qualifying purchase during your first week. Let’s make your holidays
even merrier!***</span>
<button class="btn-last">
<strong>Play now</strong>
</button>
</div>
</div>
</div>
</div>
<div class="container pt-4 pb-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 card-sb" style="background-color: #8e0031;">
<div class="d-flex justify-content-center align-items-center flex-column w-100 h-100">
<h2 class="fs-2-5-home4 ff-SoDoSans-SemiBold text-center">Buy a box, we’ll give back</h2>
<span class="color-span4 text-center mb-4">In partnership with Feeding America®, protein box
purchase helps support hunger relief in your community.****</span>
<button class="btn-vino">
<strong>Learn more</strong>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12" style="background-image: url(./assets/media/home/6.webp);
background-size: cover;
background-position: center;
height: 390px;">
</div>
</div>
<div class="messages text-center">
<p>*Offer valid 12/12–12/25 at participating Starbucks stores. Excludes Starbucks Cards and Starbucks
Card reloads, Stanley® + Starbucks®, Starbucks® Been There Series, local collections, and American
Sign Language and Military Appreciation merchandise. Cannot be combined with other offers or
discounts. Limited to stock on hand.</p>
</div>
<div class="messages text-center">
<p>**No Purchase Necessary, U.S. 18+, See Official Rules for alternate method. Enter by 1/5/25.
*Starbucks for Life means the winner will receive a daily credit for 30 years for one free food or
beverage item at participating Starbucks stores in the U.S. Excludes alcohol.</p>
</div>
<div class="messages text-center">
<p>***Valid only for new Starbucks Rewards members for 7 days from sign up. Offer good at participating
stores for a handcrafted menu-sized beverage with qualifying purchase ($8 max value). Qualifying
purchase excludes alcohol, Starbucks Card and Starbucks Card reloads. Limit one per member. Cannot
be combined with other offers or discounts. Excludes delivery services. Sign up before 1/2/2025 to
be eligible.</p>
</div>
<div class="messages text-center">
<p>****At participating Starbucks stores within the U.S. from 11/19/24 to 1/2/25, for each protein box
sold, Starbucks will donate the monetary equivalent of one meal to Feeding America®. $1 helps
provide at least 10 meals secured by Feeding America on behalf of local partner food banks.</p>
</div>
</div>
</main>
<!--MAIN-->
<hr>
<!--FOOTER-->
<div class="container">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-2 col-md-2 mb-4 d-none d-md-block">
<h5 class="pt-3 mb-5">About Us</h5>
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Our company</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Our Coffee</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">About Starbucks</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Starbucks Archive</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Investor Relations</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Customer Service</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Contact Us</a>
</li>
</ul>
</div>
<!-- Acordeón para móviles -->
<div class="col-lg-2 col-md-2 mb-4 d-block d-md-none">
<h5 class="pt-3 mb-3">
<button class="btn btn-link text-decoration-none text-dark button-h5"
data-bs-toggle="collapse" data-bs-target="#aboutUs" aria-expanded="false"
aria-controls="aboutUs">
<strong>About Us</strong>
</button>
</h5>
<div id="aboutUs" class="collapse">
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Our company</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Our Coffee</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">About Starbucks</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Starbucks Archive</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Investor Relations</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Customer Service</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Contact Us</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-2 mb-4 me-2 d-none d-md-block">
<!-- Lista estática para pantallas medianas o más grandes -->
<h5 class="pt-3 mb-5">Careers</h5>
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Culture and Values</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Inclusion, Diversity, &
Belonging</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">College Achievement
Plan</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Alumni Community</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">U.S. Careers</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">International Careers</a>
</li>
</ul>
</div>
<!-- Acordeón para dispositivos móviles -->
<div class="col-lg-2 col-md-2 mb-4 me-2 d-block d-md-none">
<h5 class="pt-3 mb-3">
<button class="btn btn-link text-decoration-none text-dark button-h5"
data-bs-toggle="collapse" data-bs-target="#careersAccordion" aria-expanded="false"
aria-controls="careersAccordion">
<strong>Careers</strong>
</button>
</h5>
<div id="careersAccordion" class="collapse">
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Culture and Values</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Inclusion, Diversity,
& Belonging</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">College Achievement
Plan</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Alumni Community</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">U.S. Careers</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">International
Careers</a>
</li>
</ul>
</div>
</div>
<!-- Lista estática para pantallas grandes -->
<div class="col-lg-2 col-md-2 mb-4 me-2 d-none d-md-block">
<h5 class="pt-3 mb-5">Social Impact</h5>
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Communities</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Starbucks Foundation</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Sustainability</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Environmental and Social
Impact Reporting</a>
</li>
</ul>
</div>
<!-- Acordeón para dispositivos móviles -->
<div class="col-lg-2 col-md-2 mb-4 me-2 d-block d-md-none">
<h5 class="pt-3 mb-3">
<button class="btn btn-link text-decoration-none text-dark button-h5"
data-bs-toggle="collapse" data-bs-target="#socialImpactAccordion" aria-expanded="false"
aria-controls="socialImpactAccordion">
<strong>Social Impact</strong>
</button>
</h5>
<div id="socialImpactAccordion" class="collapse">
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Communities</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Starbucks
Foundation</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Sustainability</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Environmental and
Social Impact Reporting</a>
</li>
</ul>
</div>
</div>
<!-- Lista estática para pantallas grandes -->
<div class="col-lg-2 col-md-2 mb-4 me-2 d-none d-md-block">
<h5 class="pt-3 mb-5">For Business Partners</h5>
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Landlord Support
Center</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Suppliers</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Corporate Gift Card
Sales</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Office and Foodservice
Coffee</a>
</li>
</ul>
</div>
<!-- Acordeón para dispositivos móviles -->
<div class="col-lg-2 col-md-2 mb-4 me-2 d-block d-md-none">
<h5 class="pt-3 mb-3">
<button class="btn btn-link text-decoration-none text-dark button-h5"
data-bs-toggle="collapse" data-bs-target="#businessPartnersAccordion"
aria-expanded="false" aria-controls="businessPartnersAccordion">
<strong>For Business Partners</strong>
</button>
</h5>
<div id="businessPartnersAccordion" class="collapse">
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Landlord Support
Center</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Suppliers</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Corporate Gift Card
Sales</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Office and Foodservice
Coffee</a>
</li>
</ul>
</div>
</div>
<!-- Lista estática para pantallas grandes -->
<div class="col-lg-3 col-md-2 mb-4 me-2 d-none d-md-block">
<h5 class="pt-3 mb-5">Order and Pick Up</h5>
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Order on the App</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Our Coffee</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Order on the Web</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Delivery</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Order and Pick
Up<br>Options</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Explore and Find
Coffee<br>for Home</a>
</li>
</ul>
</div>
<!-- Acordeón para dispositivos móviles -->
<div class="col-lg-3 col-md-2 mb-4 me-2 d-block d-md-none">
<h5 class="pt-3 mb-3">
<button class="btn btn-link text-decoration-none text-dark button-h5"
data-bs-toggle="collapse" data-bs-target="#orderPickUpAccordion" aria-expanded="false"
aria-controls="orderPickUpAccordion">
<strong>Order and Pick Up</strong>
</button>
</h5>
<div id="orderPickUpAccordion" class="collapse">
<ul class="list-inline">
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Order on the App</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Our Coffee</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Order on the Web</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Delivery</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Order and Pick
Up<br>Options</a>
</li>
<li class="mb-4">
<a href="" class="list-decoration text-muted text-list-hover">Explore and Find
Coffee<br>for Home</a>
</li>
</ul>
</div>
</div>
</div>
<hr>
<div class="d-flex">
<div>
<ul class="list-inline d-flex">
<li class="me-2"><box-icon name='spotify' size='md' type='logo'></box-icon></li>
<li class="me-2"><box-icon name='facebook-circle' size='md' type='logo'></box-icon></li>
<li class="me-2"><box-icon name='pinterest' size='md' type='logo'></box-icon></li>
<li class="me-2"><box-icon name='instagram-alt' size='md' type='logo'></box-icon></li>
<li class="me-2"><box-icon name='youtube' size='md' type='logo' type='logo'></box-icon></li>
<li class="me-2"><box-icon type='logo' size='md' name='twitter'></box-icon></li>
</ul>
<ul class="list-inline">
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">Privacy
Notice</a>
</li>
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">Consumer
Health Privacy Notice</a>
</li>
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">Terms
of
Use</a>
</li>
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">Do
not share my personal information</a>
</li>
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">CA
Supply Chain Act</a>
</li>
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">Accessibility</a>
</li>
<li class="mb-4">
<a href=""
class="list-decoration text-list-footer text-muted text-list-hover color-footer">Cookie
Preferences</a>
</li>
</ul>
<p class="p-last">Clon de la página de Starbucks creado por Carlos Mario Torres Pérez.</p>
</div>
</div>
</div>
<!--FOOTER-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js"></script>
</body>
</html>