-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (146 loc) · 4.53 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doce-Sabor - Loja de Comida</title>
<style>
/* Estilos Gerais */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
/* Cabeçalho */
header {
background-color: #2c2c2c;
color: white;
padding: 15px;
}
header h1 {
font-size: 2.5em;
margin: 0;
text-align: center;
}
/* Navegação */
nav ul {
list-style-type: none;
display: flex;
justify-content: center;
padding: 0;
}
nav ul li {
margin: 0 20px;
font-size: 1.2em;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
/* Seções */
section {
max-width: 1000px;
margin: 20px auto;
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section h2 {
text-align: center;
color: #6f4f25; /* Marrom */
}
/* Cards de Produtos */
.products-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.product-card {
width: 250px;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
}
.product-card img {
width: 100%;
border-radius: 8px;
}
.product-card h3 {
color: #6f4f25;
font-size: 1.5em;
}
.product-card p {
color: #555;
}
/* Rodapé */
footer {
background-color: #2c2c2c;
color: white;
text-align: center;
padding: 15px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<!-- Cabeçalho -->
<header>
<h1>Doce-Sabor</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cardapio.html">Cardápio</a></li>
<li><a href="https://wa.me/5514998561335">Fale Conosco</a></li>
</ul>
</nav>
</header>
<!-- Seção de Introdução -->
<section>
<h2>Bem-vindo à Doce-Sabor!</h2>
<p>Uma loja especializada em doces deliciosas para todos os gostos.</p>
</section>
<!-- Seção de Produtos -->
<section>
<h2>Nossos Produtos</h2>
<div class="products-container">
<div class="product-card">
<img src="https://files.catbox.moe/scrmny.avif" alt="Produto 1">
<h3>Leitinho</h3>
<p>Deliciosas Pipocas Gourmet feita artesanalmente com ampla camada de cobertura</p>
</div>
<div class="product-card">
<img src="https://files.catbox.moe/ndoitn.avif" alt="Produto 2">
<h3>Bala Baiana Coco</h3>
<p>A melhor Bala de Coco, molhadinha e irresistível.</p>
</div>
<div class="product-card">
<img src="https://files.catbox.moe/xyowu6.jpeg" alt="Produto 3">
<h3>Cremosinho</h3>
<p>Um delicioso Sorvete de Ninho com Nutella</p>
</div>
</div>
</section>
<!-- Seção de Contato -->
<section>
<h2>Fale Conosco</h2>
<p>Entre em contato conosco pelo instagram: <a href="https://www.instagram.com/docesaborpipocagourmet?utm_source=ig_web_button_share_sheet&igsh=ZDNlZDc0MzIxNw==">docesaborpipocagourmet </a></p>
<p>Ou pelo WhatsApp: <a href="https://wa.me/5514998561335">Clique aqui para enviar uma mensagem</a></p>
</section>
<!-- Rodapé -->
<footer>
<p>© 2025 Doce-Sabor | Todos os direitos reservados.</p>
</footer>
</body>
</html>