-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (65 loc) · 2.75 KB
/
index.html
File metadata and controls
75 lines (65 loc) · 2.75 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
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
<!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">
<title>BSALE| Productos</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header class="d-flex py-4 bg-primary">
<img src="https://dojiw2m9tvv09.cloudfront.net/4/8/img-logos-logo-bsale-blanco.png?3035" height="60px">
<div class="two columns u-pull-right">
<ul style="margin-top:10px">
<li class="submenu">
<i class="fa fa-shopping-cart" style="font-size:30px;color:white" id="img-carrito"></i>
<div id="carrito">
<table id="lista-carrito" class="u-full-width">
<thead>
<tr>
<th>Imagen</th>
<th>Nombre</th>
<th>Precio</th>
<th>Cantidad</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
<a href="#" id="vaciar-carrito" class="button u-full-width">Vaciar Carrito</a>
</div>
</li>
</ul>
</div>
</header>
<div class="d-flex mt-4 justify-content-end">
<div class="dropdown"></div>
</div>
<main id="productos" class="container bg-light mt-5 p-4">
<h2 class="text-center my-4">Productos</h2>
<div class="buscadores">
<input id="searchCategory" type="text" name="search" placeholder="Buscar Categoria" class="src">
<select id="category" >
<option value="0">Seleccione una Categoria</option>
</select>
</div>
<div class="contenido">
<div class="row">
</div>
</div>
</main>
<section id="resumen" class="resumen bg-light container mt-5 p-4 d-none">
<h2 class="text-center my-4">Resumen De Consumo </h2>
<div class="contenido row">
<p class="text-center">Añade los elementos del pedido</p>
</div>
</section>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>