-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 1.3 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 1.3 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurante Seu lugar</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Restaurante Seu lugar</h1>
<p>Sabores que encantam, servindo afeto em forma de comida!</p>
</header>
<section id="menu">
<h2>Cardápio</h2>
<ul>
<li>Espeto corrido - R$ 75,00</li>
<li>Buffe livre - R$ 40,00</li>
<li>Prato por kg- R$ 25,00 kg</li>
<li>Sobremesas - R$ 15,00</li>
</ul>
</section>
<section id="Acompanhamentos">
<h2>Acompanhamentos</h2>
<ul>
<li>Torre de Chopp 5L - R$ 70,00</li>
<li>Caipirinhas - R$ 17,00</li>
<li>Taça de vinho - 17,00</li>
<li>Refrigerantes - R$ 5,00</li>
<li>Sucos 300 ml - 3,00</li>
<li></li>
</ul>
</section>
<section id="localizacao">
<h2>Localização</h2>
<p>Avenida Paulista, 590 - Centro, São Paulo</p>
</section>
<section id="contato">
<h2>Contato</h2>
<p>Telefone: (42) 9938-8183</p>
<p>Email: jonastomacheski63@gmail.com</p>
</section>
<a href="sobre.html">Clique aqui para ver imagens do nosso restaurante!</a>
<footer>
<p>© 2025 Restaurante Seu Lugar</p>
</footer>
</body>
</html>