-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (97 loc) · 2.24 KB
/
index.html
File metadata and controls
97 lines (97 loc) · 2.24 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello Pizza</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+2&family=Reenie+Beanie&family=Roboto:ital,wght@0,400;0,500;1,500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Hello Pizza</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Sobre</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
</header>
<section>
<ul id="vantagens">
<li>Qualidade</li>
<li>Sabor</li>
<li>Praticidade</li>
<li>Agilidade</li>
</ul>
</section>
<section>
<h2>Sabores</h2>
<p>Conheça os nossos <strong>5 sabores</strong> de <em>pizza</em>!</p>
<img id="pizza-sabores" src="img/sabores-pizzas.png" alt="Fotos de Pizzas de vários sabores" />
<table>
<tr>
<th>Sabor</th>
<th>Queijo e Molho</th>
<th>Salada</th>
<th>Carne</th>
<th>Azeito/Champignon</th>
</tr>
<tr>
<td>Mozzarella</td>
<td rowspan="6">Sim</td>
<td>Não</td>
<td>Não</td>
<td>Não</td>
</tr>
<tr>
<td>Calabresa</td>
<td>Não</td>
<td>Sim</td>
<td>Sim</td>
</tr>
<tr>
<td>Pepperoni</td>
<td>Não</td>
<td>Sim</td>
<td>Sim</td>
</tr>
<tr>
<td>Marguerita</td>
<td>Sim</td>
<td>Sim</td>
<td>Sim</td>
</tr>
<tr>
<td>Portuguesa</td>
<td>Sim</td>
<td>Sim</td>
<td>Sim</td>
</tr>
<tr>
<td>Alho</td>
<td>Não</td>
<td>Não</td>
<td>Não</td>
</tr>
</table>
</section>
<section>
<h2>Contato</h2>
<form action="http://arquivo.devmedia.com.br/projeto/requisicao.php" method="post">
<label>Nome:</label>
<input type="text" name="nome"/>
<label>E-Mail:</label>
<input type="text" name="email"/>
<label>Mensagem:</label>
<textarea name="mensagem"></textarea>
<input type="submit" value="Enviar Mensagem" />
</form>
</section>
<footer>
<a href="#" id="logo-hellopizza">Hello Pizza</a>
<p>Todos os direitos reservados © 2018</p>
</footer>
</body>
</html>