-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproducts.html
More file actions
76 lines (52 loc) · 2.52 KB
/
products.html
File metadata and controls
76 lines (52 loc) · 2.52 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
<!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">
<title>Productos</title>
<!-- Bootstrap 5.3 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- Estilos CSS generales -->
<link rel="stylesheet" href="styles/styles.css">
<!-- Estilos CSS products -->
<link rel="stylesheet" href="styles/products.css">
<!-- Iconos bootstrap -->
<!-- Example: <i class="bi-alarm"></i> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
</head>
<body>
<div id="navbar" class="sticky-top"></div>
<div class="container-fluid col-10 py-3 mt-5 modalLittleBoxes">
<h1 class="h1 mb-1 lightYellowText text-center">Estante de Productos</h1>
<h4 class="h4 mb-1 lightYellowText text-center">Aquí encontrarás todos nuestros productos disponibles. ¡Esperamos que encuentres algo que te guste!</h4>
</div>
<div id="products-container" class="row py-5 mx-5"></div>
<div id="modal-product" class="modal fade" tabindex="-1" role="dialog">
<!-- <div class="modal d-block" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true"> -->
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header" id="modal-title">
</div>
<div class="modal-body">
<div class="row" id="row-modal-body">
</div>
</div>
<div class="modal-footer" id="modal-footer">
</div>
</div>
</div>
</div>
<article></article>
<div id="footer"></div>
<!-- Script para todos los archivos -->
<script src="scripts/scripts.js"></script>
<!-- Script de products -->
<script src="scripts/products.js"></script>
<!-- Script Bootstrap 5.3 -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>