-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarrito.html
More file actions
49 lines (40 loc) · 1.37 KB
/
carrito.html
File metadata and controls
49 lines (40 loc) · 1.37 KB
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
<!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="css/main.css">
<title>ABM productos</title>
</head>
<body class="scroll--auto">
<header>
<nav class="navbar--faqstyle bg--primary">
<div class="navbar__brand">
<h1 class="navbar__link mt--1">Carrito</h1>
</div>
</nav>
</header>
<main class="grid m--2 bg--background">
<div class="col--span--12 grid--med--6">
<a href="/index.html" class="boton--e bg--primary e--2--terciary">
<span>
Volver al Stock
</span>
</a>
<button class="boton--e bg--primary e--2--terciary">
<span>
Ver Resumen
</span>
</button>
</div>
<div class="card mb--2 col--span--12" id="productos">
</div>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="./js/utils/producto.class.js"></script>
<script src="./js/utils/productList.class.js"></script>
<script src="./js/utils/inicial_state.js"></script>
<script src='./js/carrito.js'></script>
</body>
</html>