-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 2.45 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
<!DOCTYPE html>
<html lang="es">
<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">
<!-- AOS -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- BS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<!-- Toastify -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<!-- CSS -->
<link rel="stylesheet" href="style/style.css">
<title>FT MANGAS</title>
</head>
<body class="container bodyPropio">
<p class="bannerPromocion">¡Cyber Week 35% OFF!</p>
<h1 class="text-center tituloTop">F.T. MANGAS</h1>
<div id="contenedorItems" class="row"></div>
<hr>
<h2 class="text-center">CHECKEÁ Y MODIFICÁ TU CARRITO</h2>
<div class="contenedorBotones">
<button id="showCarrito" class="btn btn-primary m-2">Ver Carrito</button>
<button id="clearCarrito" class="btn btn-danger m-2">Vaciar</button>
<button id="comprarCarrito" class="btn btn-success m-2">Finalizar Compra</button>
</div>
<h3 class="text-center m-2">TOTAL CARRITO: $<span id="montoTotal"></span></h3>
<div id="contenedorCarrito" class="row"></div>
<hr>
<h2 class="text-center">NUESTROS CLIENTES</h2>
<!-- COMENTARIOS CLIENTES -->
<div id="divComentariosClientes" class="contenedorComentarios"></div>
<hr>
<p class="text-center font-monospace">Alumno: Alejandro Ortega | Proyecto Final | <a class="linkPropio" href="https://github.com/AlejandroROrtega" target="_blank">GitHub</a></p>
<!-- SWAL -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- AOS -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!-- Toastify -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<!-- BS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<!-- SCRIPT MAIN -->
<script src="javascript/main.js"></script>
</body>
</html>