-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Mi Ecommerce con Grid</title>
</head>
<body>
<div class="container">
<header class="header">Mi E-commerce</header>
<aside class="sidebar">
<h2>Categorías</h2>
<ul class="category-list">
<li>Perfumes (13)</li>
<li>Ropa (21)</li>
<li>Accesorios (41)</li>
<li>Zapatos (10)</li>
</ul>
</aside>
<main class="main">
<section class="product-grid">
<article class="product-item">
<img src="./assets/imgs/perfume.jpeg" alt="Poleron Puma">
<h2>Perfume Blue</h2>
<p class="price">44.700</p>
<button class="buy-button">Comprar</button>
</article>
<article class="product-item">
<img src="./assets/imgs/perfume2.jpeg" alt="Product 2">
<h2>Perfume Fleux</h2>
<p class="price">$20.00</p>
<button class="buy-button">Comprar</button>
</article>
<article class="product-item">
<img src="./assets/imgs/poleron puma.jpeg" alt="Poleron Puma">
<h2>Poleron Puma</h2>
<p class="price">125.950</p>
<button class="buy-button">Comprar</button>
</article>
<article class="product-item">
<img src="./assets/imgs/zapatos.jpeg" alt="Poleron Puma">
<h2>Zapatos Docker</h2>
<p class="price">89.58</p>
<button class="buy-button">Comprar</button>
</article>
</section>
</main>
<footer class="footer">© 2024 Mi E-commerce</footer>
</div>
</body>
</html>