-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (64 loc) · 2.88 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
<!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>Ds | Jewelry store</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Dancing+Script:wght@700&family=Inconsolata&family=Kalam&family=Montserrat:ital,wght@0,300;0,400;1,700&family=Noto+Sans+Mono:wght@600&family=Open+Sans:wght@300;400;700&family=Roboto+Mono:wght@500&display=swap');
</style>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<div class="wrapper">
<header class="header-mobile">
<h1 class="logo">Ds | Jewelry store</h1>
<button class="open-menu" id="open-menu">
<i class="bi bi-list"></i>
</button>
</header>
<aside>
<button class="close-menu" id="close-menu">
<i class="bi bi-x"></i>
</button>
<header>
<h1 class="logo">Ds | Jewelry store</h1>
</header>
<nav>
<ul class="menu">
<li>
<button id="todos" class="boton-menu boton-categoria active" href="#todos"><i class="bi bi-hand-index-thumb-fill"></i> All items</button>
</li>
<li>
<button id="ring" class="boton-menu boton-categoria"><i class="bi bi-hand-index-thumb"></i> Rings</button>
</li>
<li>
<button id="necklace" class="boton-menu boton-categoria"><i class="bi bi-hand-index-thumb"></i> Necklaces</button>
</li>
<li>
<button id="watch" class="boton-menu boton-categoria"><i class="bi bi-hand-index-thumb"></i> Watches</button>
</li>
<li>
<a class="boton-menu boton-carrito" href="./carrito2.html">
<i class="bi bi-cart-fill"></i> Carrito <span id="numerito" class="numerito">0</span>
</a>
</li>
</ul>
</nav>
<button class="boton-cerrar"><a href="login.html">Iniciar Sesión</a></button>
<footer>
<p class="texto-footer">© 2023 Danier Ortega</p>
</footer>
</aside>
<main>
<h2 class="titulo-principal" id="titulo-principal">Todos los Productos</h2>
<div id="contenedor-productos" class="contenedor-productos">
</div>
</main>
</div>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<script src="./js/index.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>