-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarrito.html
More file actions
39 lines (38 loc) · 1001 Bytes
/
carrito.html
File metadata and controls
39 lines (38 loc) · 1001 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,
Initial-scale-1.0" />
<title>Inicio | Mi Tienda</title>
<link rel="stylesheet" href="css/estilos.css" />
</head>
<body>
<header>
<h1>Mi Tienda</h1>
<nav>
<ul>
<li><a href="index.html">Inicio</li>
<li><a href="productos.html">Productos</a></li>
<li><a href="carrito.html">Carrito</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
<section class="busqueda">
<input type="text" id="buscador" placeholder= "🔍Buscar productos..."
pninput filtrar Productos()" />
</section>
</header>
<main>
<section class="Carrito lista">
<h2> Tu carrito de compras</h2>
<ul id="lista de carrito"></ul>
<p id="total-carrito" class="total"> total : $0.00</p>
<button id="btn-confirmar" class="btn-confirmar"> confirmar compra</button>
</section>
</main>
<footer>
<p>© 2025 Mi Tienda</p>
</footer>
<script src="js/main.js"></script>
</body>