-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
71 lines (54 loc) · 1.98 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Produtos</title>
<link rel="stylesheet" href="app/css/reset.css">
<link rel="stylesheet" href="app/css/style-products.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="box">
<h1><img class="logo" src="img/logo.png"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Produtos</a></li>
<li><a href="contact.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<ul class="products">
<li>
<h2>Cabelo</h2>
<img src="img/cabelo.jpg">
<p class="product-desc">Na tesoura ou máquina</p>
<p class="product-price">R$25,00</p>
</li>
<li>
<h2>Barba</h2>
<img src="img/barba.jpg">
<p class="product-desc">Corte e desenho profissional</p>
<p class="product-price">R$18,00</p>
</li>
<li>
<h2>Cabelo + Barba</h2>
<img src="img/cabelo+barba.jpg">
<p class="product-desc">Pacote completo</p>
<p class="product-price">R$35,00</p>
</li>
</ul>
</main>
<footer>
<img src="img/logo-branco.png">
<p class="copyright">
© Copyright Barbearia Alura - 2022
</p>
</footer>
</body>
</html>