-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
157 lines (142 loc) · 4.37 KB
/
index.html
File metadata and controls
157 lines (142 loc) · 4.37 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
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laneiro Brownies</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f3f8fa;
color: #333;
}
header {
background-color: #2a7da2;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
text-align: center;
margin: 20px 0;
}
nav a {
text-decoration: none;
color: #2a7da2;
margin: 0 15px;
font-size: 1.2em;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
text-align: center;
padding: 40px 20px;
}
.container h2 {
font-size: 2em;
margin-bottom: 20px;
}
.products {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.product {
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
width: 250px;
padding: 20px;
text-align: center;
}
.product img {
width: 100%;
border-radius: 10px;
}
.product h3 {
margin: 15px 0;
color: #2a7da2;
}
.product p {
font-size: 1em;
color: #666;
}
.product button {
background-color: #2a7da2;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
}
.product button:hover {
background-color: #1d5f7c;
}
footer {
background-color: #2a7da2;
color: white;
text-align: center;
padding: 10px 0;
margin-top: 40px;
}
</style>
</head>
<body>
<header>
<h1>Laneiro Brownies</h1>
<p>Os melhores brownies com o sabor do mar e da Grécia!</p>
</header>
<nav>
<a href="#sobre">Sobre</a>
<a href="#produtos">Produtos</a>
<a href="#contato">Contato</a>
</nav>
<div class="container">
<section id="sobre">
<h2>Sobre Nós</h2>
<p>Nossos brownies são feitos com carinho e ingredientes selecionados. Inspirados no oceano e nas paisagens da Grécia, trazemos sabores únicos para adoçar seu dia!</p>
</section>
<section id="produtos">
<h2>Produtos</h2>
<div class="products">
<div class="product">
<img src="https://via.placeholder.com/250" alt="Brownie Clássico">
<h3>Brownie Clássico</h3>
<p>O autêntico sabor de chocolate.</p>
<button>Comprar</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250" alt="Brownie com Nozes">
<h3>Brownie com Nozes</h3>
<p>Crocância e sabor na medida certa.</p>
<button>Comprar</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/250" alt="Brownie de Caramelo">
<h3>Brownie de Caramelo</h3>
<p>Uma explosão de sabor irresistível.</p>
<button>Comprar</button>
</div>
</div>
</section>
<section id="contato">
<h2>Contato</h2>
<p>Entre em contato pelo WhatsApp: <strong>(XX) XXXX-XXXX</strong></p>
<p>Ou envie um e-mail para: <strong>laneirobrownies@email.com</strong></p>
</section>
</div>
<footer>
<p>© 2025 Laneiro Brownies - Todos os direitos reservados.</p>
</footer>
</body>
</html>