-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.4 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Produtos -hamburgueria</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="/imagens/logo.png"></h1>
<nav>
<ul>
<li><a href="/imagens/index.html">Home</a></li>
<li><a href="/imagens/produtos.html">Produtos</a></li>
<li><a href="/imagens/contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<ul class="produtos">
<li>
<h2>hamburguer</h2>
<img src="download (1).jpeg">
<p class="produto-descricao">hamburguer simples</p>
<p class="produto-preco">R$ 25,00</p>
</li>
<li>
<h2><hamburguer></hamburguer>
<batata></batata></h2>
<img src="img-hamburgueria-de-sucesso.png">
<p class="produto-descricao">hamburguer artesanal com batata</p>
<p class="produto-preco">R$ 78,00</p>
</li>
<li>
<h2>combo simples</h2>
<img src="hob_hamburgueria_destaque_zona_sul.jpg">
<p class="produto-descricao">Pacote completo combo lanches</p>
<p class="produto-preco">R$ 35,00</p>
</li>
</ul>
</main>
<footer>
<img src="/imagens/logo-branco.png">
<p class="copyright">©x-salada -hamburgueria Max</p>
</footer>
</body>
</html>