-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="normalice.css">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<h1>Laboratorio Carrito de Compras</h1>
<section id="productCart">
<h2>Productos Premium</h2>
<div class="cabeceraCarrito">
<div>ID</div>
<div>Nombre</div>
<div>Precio</div>
<div>Cantidad</div>
<div>Premium</div>
<div>Eliminar</div>
</div>
<div id="listProductPremium">
</div>
<h2>Todos los Productos</h2>
<div class="cabeceraCarrito">
<div>ID</div>
<div>Nombre</div>
<div>Precio</div>
<div>Cantidad</div>
<div>Premium</div>
<div>Eliminar</div>
</div>
<div id="listProduct">
</div>
<section id="resumenCarrito">
<span id="totalCart">El total de su carrito es: </span>
<span id="envio"></span>
</section>
</section>
<script src="app.js"></script>
</body>
</html>