-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (76 loc) · 3.16 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
81
82
83
84
85
86
87
<!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>WASTI SHOP</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="wrapper">
<header class="header-mobile">
<h1 class="logo">WastiShop</h1>
<button class="open-menu" id="open-menu">
<i class="bi bi-list"></i>
</button>
</header>
<aside class="aside-visible">
<button class="close-menu" id="close-menu">
<i class="bi bi-x"></i>
</button>
<header>
<h1 class="logo">WastiShop</h1>
</header>
<nav>
<ul class="topnav" id="myTopnav">
<li class="lista">
<a href="./index.html" class="active">Shop</a>
<a href="./nosotros.html">Nosotros</a>
<a href="./login.html">Login</a>
<a class="boton-carrito" href="./carrito.html">
<i class="bi bi-cart-fill"></i> Carrito <span id="numerito" class="numerito">0</span>
</a>
</li>
</ul>
</nav>
<div class="fondo">
</div>
</aside>
<nav>
<ul class="menu">
<li>
<button id="todos" class="boton-menu boton-categoria active"> Todos los productos</button>
</li>
<li>
<button id="indumentaria" class="boton-menu boton-categoria"> Indumentaria </button>
</li>
<li>
<button id="arte plástico" class="boton-menu boton-categoria"> Arte Plastico </button>
</li>
<li>
<button id="arte en lienzo" class="boton-menu boton-categoria"> Arte en Lienzo </button>
</li>
<li>
<button id="escultura" class="boton-menu boton-categoria"> Escultura </button>
</li>
</ul>
</nav>
<main>
<h2 class="titulo-principal" id="titulo-principal">Todos los productos</h2>
<div id="contenedor-productos" class="contenedor-productos">
<!-- Esto se va a rellenar con JS -->
</div>
</main>
</div>
<footer>
<p class="texto-footer">© 2023 PRaV </p>
</footer>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<script src="./main.js"></script>
<script src="./menu.js"></script>
</body>
</html>