-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (45 loc) · 2.05 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proyecto JS 4</title>
<link rel="shortcut icon" href="./assets/imagenes/carrito.ico" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/11.7.32/sweetalert2.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
</head>
<body>
<header>
<h1>¡bienvenido al carrito de compras!</h1>
</header>
<main>
<div class="inicio">
<div class="registro">
<button id="login" class="login-reg">login</button>
<h2 class="banner">compre tranquilo desde la comodidad de su hogar</h2>
<button class="ver-carrito" id="verCarrito">🛒</button>
</div>
</div>
<div id="opciones" class="opciones-content"></div>
<div id="modalContainer" class="modal-container"></div>
</main>
<footer>
<h4 class="registro">Acceda a la categoría deseada:</h3>
<div id="categorias" class="opciones-content"></div>
<div class="contacto">
<a href="https://www.instagram.com/"><img src="./assets/imagenes/ins.png" alt="logo de instagram"></a>
<h4 class="contacto">¡gracias por su visita!</h4>
<a href="https://www.whatsapp.com/?lang=es_LA"><img src="./assets/imagenes/wha.png"
alt="logo de whatsapp"></a>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/11.7.32/sweetalert2.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<script src="./model/login.js"></script>
<script src="./model/ag-prod.js"></script>
<script src="./js/proyecto4.js"></script>
<script src="./model/pedido.js"></script>
</body>
</html>