-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarrito.html
159 lines (119 loc) · 3.56 KB
/
carrito.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!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" />
<title>Carrito de compras | Zayro Disfraces</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800'>
<link rel="stylesheet" href="css/carrito.css">
<link rel="icon" type="image/png" href="images/logo2.png">
</head>
<body>
<header id="site-header">
<div class="container">
<h1>Carrito de compras <span>[</span> <em><a href="#" target="_blank">Zayro</a></em><span
class="last-span is-open">]</span></h1>
</div>
</header>
<div class="container">
<section id="cart">
<article class="product">
<header>
<a class="remove">
<img src="images/carrusel4.jpg" alt="">
<h3>Eliminar producto</h3>
</a>
</header>
<div class="content">
<h1>Disfraz Hombre araña</h1>
Disfraz para hombre de talla XXL.
<div title="You have selected this product to be shipped in the color yellow." style="top: 0"
class="color yellow"></div>
<div style="top: 43px" class="type small">XXL</div>
</div>
<footer class="content">
<span class="qt-minus">-</span>
<span class="qt">2</span>
<span class="qt-plus">+</span>
<h2 class="full-price">
$25.000
</h2>
<h2 class="price">
$50.500
</h2>
</footer>
</article>
<article class="product">
<header>
<a class="remove">
<img src="images/carrusel7.jpg" alt="">
<h3>Eliminar producto</h3>
</a>
</header>
<div class="content">
<h1>Disfraz Espantapájaros</h1>
Disfraz de Espantapájaros para mujer talla L.
<div title="You have selected this product to be shipped in the color red." style="top: 0"
class="color red"></div>
<div title="You have selected this product to be shipped sized Small." style="top: 43px"
class="type small">L</div>
</div>
<footer class="content">
<span class="qt-minus">-</span>
<span class="qt">1</span>
<span class="qt-plus">+</span>
<h2 class="full-price">
$59.050
</h2>
<h2 class="price">
$59.050
</h2>
</footer>
</article>
<article class="product">
<header>
<a class="remove">
<img src="images/ninos.jpg" alt="">
<h3>Eliminar producto</h3>
</a>
</header>
<div class="content">
<h1>Disfraz Esqueleto</h1>
Disfraz para niño de esqueleto talla S.
<div title="You have selected this product to be shipped in the color blue." style="top: 0"
class="color blue"></div>
<div style="top: 43px" class="type small">S</div>
</div>
<footer class="content">
<span class="qt-minus">-</span>
<span class="qt">3</span>
<span class="qt-plus">+</span>
<h2 class="full-price">
$50.450
</h2>
<h2 class="price">
$19.900
</h2>
</footer>
</article>
</section>
</div>
<footer id="site-footer">
<div class="container clearfix">
<div class="left">
<h2 class="subtotal">Subtotal: $<span>50.000</span></h2>
<h3 class="tax">IVA (5%): $<span>5.000</span></h3>
<h3 class="shipping">Envío: $<span>10.000</span></h3>
</div>
<div class="right">
<h1 class="total">Total: $<span>65.000</span></h1>
<a class="btn">Proceder al pago</a>
</div>
</div>
</footer>
<!-- partial -->
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/carrito.js"></script>
</body>
</html>