-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardapio.html
92 lines (92 loc) · 2.56 KB
/
cardapio.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cardapio | Doce Sabor</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 20px;
}
section {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
a {
color: #007BFF;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
img {
border-radius: 50%;
width: 150px;
height: 150px;
margin: 20px 0;
}
.container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.project {
background-color: #f9f9f9;
padding: 15px;
border-radius: 8px;
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
width: 250px;
}
.project a {
color: #007BFF;
}
</style>
</head>
<body>
<header>
<h1>cardapios</h1>
</header>
<section>
<h2>Sobre Nós</h2>
<img src="https://files.catbox.moe/xyowu6.jpeg" alt="Foto de Perfil">
<p>Uma loja especializada em doces deliciosas para todos os gostos</p>
</section>
<section>
<h2>Cardapios!</h2>
<div class="container">
<div class="project">
<h3>Pipocas Gourmet</h3>
<p><a href="subpipocas.html">Ver mais</a></p>
</div>
<div class="project">
<h3>Balas Gourmet</h3>
<p><a href="subBalas.html">Ver mais</a></p>
</div>
</div>
</section>
<section>
<h2>Contato</h2>
<p><a href="https://www.instagram.com/docesaborpipocagourmet">Instagram</a></p>
<p><a href="https://wa.me/5514998561335">WhatsApp</a></p>
</section>
<!-- Rodapé -->
<footer>
<p>© 2025 Doce-Sabor | Cardapios | Todos os direitos reservados.</p>
</footer>
</body>
</html>