-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproductos.html
More file actions
48 lines (43 loc) · 1.62 KB
/
productos.html
File metadata and controls
48 lines (43 loc) · 1.62 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Productos | Cerimex</title>
<link rel="stylesheet" href="css/estilo.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo-container">
<img src="img/cerimex-logo.png" alt="logo.png">
<h1><a href="index.html">Cerimex</a></h1>
</div>
<div class="search-bar">
<input type="text" placeholder="Buscar productos...">
<button type="submit">Buscar</button>
</div>
<div class="nav-links">
<a href="index.html">Inicio</a>
<a href="productos.html">Productos</a>
<a href="categorias.html">Categorías</a>
<a href="ofertas.html">Ofertas</a>
<a href="mi-cuenta.html">Mi Cuenta</a>
<a href="carrito.html">Carrito</a>
</div>
</nav>
</header>
<main class="container">
<section class="hero-section">
<h1 id="products-page-heading">Todos Nuestros Productos</h1> <p>Explora la variedad completa de productos Cerimex.</p>
<a href="index.html" class="btn">Regresar a inicio</a>
</section>
<section class="product-listing"> <div class="product-grid" id="all-products-grid">
</div>
</section>
</main>
<footer class="footer">
<p>© 2025 Cerimex. Todos los derechos reservados.</p>
</footer>
<script src="js/productos.js" defer></script> </body>
</html>