-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
39 lines (37 loc) · 1.18 KB
/
products.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOM Fut - Produtos</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<img src="images/LOGO-SEM-FUNDO.png" alt="Logo DOM Fut" class="logo">
<nav>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="products.html">Produtos</a></li>
<li><a href="categories.html">Categorias</a></li>
</ul>
</nav>
</header>
<main>
<h1>Produtos</h1>
<section class="product-list">
<div class="product">
<img src="images/Flamengo.webp" alt="Camisa Flamengo">
<div class="product-info">
<h2>Camisa Flamengo I 24/25</h2>
<a href="product-details.html">Ver detalhes</a>
</div>
</div>
<!-- Adicione mais produtos aqui se necessário -->
</section>
</main>
<footer>
<p>© 2024 DOM Fut. Todos os direitos reservados.</p>
</footer>
</body>
</html>