-
Notifications
You must be signed in to change notification settings - Fork 0
/
carrito_b.html
88 lines (88 loc) · 3.3 KB
/
carrito_b.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ACME-ECOMMERCE</title>
<link
type="icon"
rel="stylesheet"
href="https://cdn.worldvectorlogo.com/logos/acme-1.svg"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="advice flex_column">
<p>Dimensiones no soportadas</p>
</div>
<div class="container_a flex_column padding_10">
<div class="title flex">
<img
src="https://cdn.worldvectorlogo.com/logos/acme-1.svg"
alt=""
class="title_img"
/>
<h1>Campus Shop</h1>
</div>
<nav class="index">
<ul>
<li><a href="./index.html">Todos los productos</a></li>
<li><a href="./abrigos.html">Abrigos</a></li>
<li><a href="./camisetas.html">Camisetas</a></li>
<li><a href="./pantalones.html">Pantalones</a></li>
<li class="current_page">
<a href="./carrito.html">Carrito</a>
</li>
</ul>
</nav>
<footer>
<p>©2024 Camper</p>
</footer>
</div>
<div class="container_b space_between flex_column padding_10">
<h2>Carrito de compras</h2>
<div class="cart_container">
<div class="cart_product">
<img
src="https://http2.mlstatic.com/D_NQ_NP_2X_787280-MCO51843885132_102022-F.webp"
alt=""
srcset=""
/>
<div class="product_name">
<h3 class="cart_title">Producto</h3>
<h3>
Chaqueta Impermeable En Gabán Para Dama <q>Azul</q>
</h3>
</div>
<div class="product_quantity">
<h3 class="cart_title">Cantidad</h3>
<h3>3</h3>
</div>
<div class="product_value">
<h3 class="cart_title">Precio</h3>
<h3>$93900</h3>
</div>
<div class="subtotal">
<h3 class="cart_title">Subtotal</h3>
<h3>$281700</h3>
</div>
<a href="./carrito_empty.html" class="fit_button">
<button class="fit_button">Eliminar</button>
</a>
</div>
</div>
<div class="cart_actions">
<a href="./carrito_empty.html" class="fit_button">
<button class="fit_button">Vaciar Carrito</button>
</a>
<fieldset class="fit_button">
<legend>
Total
</legend>
<h3>$ 93900</h3>
<button class="fit_button">Pagar</button>
</fieldset>
</div>
</div>
</body>
</html>