-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (51 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
64 lines (51 loc) · 2.21 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
<!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">
<title>Dry Law</title>
<!-- CSS BOOSTRAP -->
<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">
<!-- CSS SWEET ALERT -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.5/dist/sweetalert2.min.css">
<!-- CSS LOCAL -->
<link rel="stylesheet" href="css/estilo.css">
</head>
<header>
<H1 class="text-center">Dry Law</H1>
<div id="menu">
<div>
<button class="btn colorBoton" id="singIn">Sing In</button>
<button class="btn colorBoton" id="singUp">Sing Up</button>
</div>
<div id="clima">
<h2>Córdoba, Argentina</h2>
<div class="pronostico"></div>
</div>
</div>
</header>
<body class="container">
<H2 class="text-center">Vinoteca Online</H2>
<hr>
<div id="contenedorProductos" class="row">
</div>
<hr>
<H2 class="carrito">Carrito de compras</H2>
<h3 class="totalCompra">El total de la compra es de <span id="total"></span></h3>
<section class="botonesCompra">
<button class="btn colorBoton" id="verCarrito">Ver carrito</button>
<button class="btn colorBoton" id="vaciarCarrito">Vaciar carrito</button>
<button class="btn colorBoton" id="finalizarCompra" >Finalizar Compra</button>
</section>
<div id="contenedorCarrito" class="row"></div>
<!-- SCRIPTS -->
<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 src="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.5/dist/sweetalert2.all.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="js/main.js"></script>
</body>
</html>
<footer>
<p>© 2023 Vinoteca Online - Dry Law</p>
</footer>