-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (54 loc) · 2.64 KB
/
Copy pathindex.html
File metadata and controls
95 lines (54 loc) · 2.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vinharia Agnello</title>
<link rel="stylesheet" href="./src/CSS/style.css">
</head>
<body>
<header>
<h1>Vinharia Agnello</h1>
<p>Sistema Básico de gerenciamento de vinhos via console.log</p>
</header>
<main class="container">
<section>
<h3>Vinho Tinto</h3>
<img src="src/assets/imgs/vinho_fino_tinto_seco_cabernet_sauvignon_rarita_750_ml_119_2_d6be26b634516768d557e7b978ecb0c4.webp" alt="Vinho Tinto" style="width: 250px; height: 350px; object-fit: cover; display: block; margin: 0 auto;">
<p >Um vinho de corpo médio, com notas de frutas vermelhas e um final suave, ideal para harmonizar com carnes leves.</p>
</section>
<!---->
<section>
<h3>Vinho Espumante</h3>
<img src='src/assets/imgs/Vinho-Espumante.jpg'alt="Vinho Espumante" style="width: 250px; height: 350px; object-fit: cover; display: block; margin: 0 auto;">
<p >Um vinho espumante leve e refrescante, com notas frutadas e borbulhas finas, perfeito para celebrações e momentos especiais.</p>
</section>
<!---->
<section>
<h3>Vinho Vulcânico</h3>
<img src="src/assets/imgs/vulcanico.webp" alt="Vinho Vulcânico" style="width: 250px; height: 350px; object-fit: cover; display: block; margin: 0 auto;">
<p >Produzido em solos vulcânicos, com perfil mineral, fresco e marcante.
</p>
</section>
<!---->
<section>
<h3>Vinho Licoroso</h3>
<img src="src/assets/imgs/licoroso.webp" alt="Vinho Licoroso" style="width: 250px; height: 350px; object-fit: cover; display: block; margin: 0 auto;">
<p >vinho encorpado, doce e intenso, com maior teor alcoólico, ideal para sobremesas.</p>
</section>
<!---->
<section>
<h3>Vinho Branco</h3>
<img src="src/assets/imgs/Taca-Vinho-Branco-MAIO-6_8-1 (1).webp" alt="Coloque aqui a descrição da imagem" style="width: 250px; height: 350px; object-fit: cover; display: block; margin: 0 auto;">
<p >Um vinho branco leve e refrescante, com notas cítricas e frutadas, ideal para dias quentes e harmonização com peixes e saladas.</p>
</section>
<!---->
<section>
<h3>Vinho Rosé</h3>
<img src="src/assets/imgs/vinho rose.webp" alt="Vinho Rosé" style="width: 250px; height: 350px; object-fit: cover; display: block; margin: 0 auto;">
<p >Um vinho rosé leve e equilibrado, com notas de frutas vermelhas e frescor agradável, ideal para dias quentes e momentos descontraídos.</p>
</section>
</main>
<script src="src/JavaScript/script.js"></script>
</body>
</html>