-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (63 loc) · 2.42 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
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
<!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>Document</title>
<script src="https://kit.fontawesome.com/01be30a3c1.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<i class="fa-solid fa-person-walking-luggage odige">
<span>Shopping Cart</span>
</i>
<ul class="class-list">
<li class="list-item"><a href="#"></a>Home</li>
<li class="list-item"><a href="#"></a>About</li>
<li class="list-item"><a href="#"></a>contact</li>
</ul>
<div class="btn">
<button>
<i class="fa-solid fa-bars toggle"></i>
</button>
</div>
</nav>
</header>
<main class="principal">
<div class="principal-container">
<div class="principal-content">
<h2 class="titilo-pricipal">Mi producto</h2>
<div class="class-product" id="product-class"></div>
</div>
</div>
<aside class="contenairs-car">
<div class="car-content">
<h2 class="car-title"> Mi carrito</h2>
<div class="envol-car" id="envol-car"></div>
<div class="container-car-total">
<span class="envol-car-total-tex">Total:</span>
<span id="car-total" class="envol-car-total-number">$0</span>
</div>
<div class="wrapper__sidebar-cart-btn">
<button id="checkout" class="wrapper__sidebar-cart-btn-link">
<i class="fa-solid fa-bag-shopping"></i>
<span class="wrapper__sidebar-cart-btn-text" id="check-in" >Checkout</span>
</button>
</div>
</div>
</aside>
</main>
<footer class="pied1">
<div class="footer__copy">
<p class="footer__copy-text">
<i class="fa-solid fa-bag-shopping"></i> <span class="footer__logo-text">Shoping Cart</span>©
2022.
</p>
</div>
</footer>
<script type="text/javascript" src="JS/curso.js"></script>
</body>
</html>