-
Notifications
You must be signed in to change notification settings - Fork 0
/
sobremesas.html
99 lines (96 loc) · 3.31 KB
/
sobremesas.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/android-chrome-192x192.png" type="image/x-icon">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/Sobremesa.css">
<title>SOBREMESAS</title>
</head>
<body>
<header>
<div class="logo"><a href="index.html"><img width="79px" src="img/logoPizzaria.png" alt="piza"></a></div>
<div class="textoheader"><p>A Melhor Pizza de SÃO PAULO!!😍</b><b> Fazemos pizza no FORNO a LENHA</p></div>
<div class="linksheader"><a href="index.html">HOME</a> | <a href="#">PIZZAS</a> | <a href="#">BEBIDAS</a> | <a href="sobremesas.html">SOBREMESAS</a> | <a href="contato.html">CONTATO</a></div>
</header>
<nav class="navbar">
<div id="item" >
<h2>Pizza Doce</h2>
<img src="img/PizzaChocolaMorango.png" alt="Pizza De Queijo">
<p>Chocolate Com Morango</p>
<h1>28,00</h1>
<button>Comprar</button>
</div>
<div id="item" >
<h2>Pizza Doce</h2>
<img src="img/PIzzaBanana.png" alt="Pizza De Banana Com Chocolate Branco">
<p>Banana Com Chocolate Branco e Canela</p>
<h1>36,00</h1>
<button>Comprar</button>
</div>
<div id="item" >
<h2>Pizza Doce</h2>
<img src="img/PizzaChocolate.png" alt="Pizza De Chocolate Com M&M">
<p>Chocolate Com M&M</p>
<h1>28,00</h1>
<button>Comprar</button>
</div>
<div id="item" >
<h2>Pizza Doce</h2>
<img src="img/PizzaCocoRalado.png" alt="Pizza De Coco Ralado">
<p>Coco Ralado</p>
<h1>28,00</h1>
<button>Comprar</button>
</div>
<div id="item" >
<h2>Pizza Doce</h2>
<img src="img/pizzasChocolaBrigadeiro.png" alt="Pizza De Chocolate Com Brigadeiro ">
<p>Chocolate Com Brigadeiro</p>
<h1>29,00</h1>
<button>Comprar</button>
</div>
<div class="d-grid gap-2 d-md-block">
<a href="bebidas.html"><button class="btn btn-primary" type="button">Voltar</button></a>
<a href="contato.html"><button class="btn btn-primary" type="button">Proximo</button></a>
</div>
</nav>
<footer>
<div id="footer_content">
<div id="footer_contacts">
<h3>Contatos</h3>
<div id="footermedia">
<a href="#" class="footerllink" id="instagram">
<i aria-hidden="true"><img src="img/icone_insta.svg" alt=""></i></a>
<a href="#" class="footerllink" id="whatsapp">
<i aria-hidden="true"><img src="img/whatsapp.png" alt=""></i></a>
</div>
</div>
<div id="footer-list">
<ul class="footer-list">
<h3>Produtos</h3>
<li><a href="sobremesas.html">Sobremesas</a></li>
<li><a href="#">Pizzas</a></li>
<li><a href="#">Bebidas</a></li>
</ul>
</div>
<div id="footer-subscribe">
<h3>Sugestões</h3>
<p>
enviar e-mail com Sugestões
</p>
<div id="input_group">
<input type="email" id="email">
<button>
<img class="envelope" src="img/o-email.png" alt="">
</button>
</div>
</div>
</div>
<div id="footer_copyright">
©
2023 todos os direitos reservados
</div>
</footer>
</body>
</html>