-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (94 loc) · 3.46 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
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
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comida Mexicana</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f3f3f3;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
}
h1 {
text-align: center;
}
.prato {
margin-bottom: 20px;
}
.descricao {
font-style: italic;
}
.pedido {
margin-top: 20px;
text-align: center;
}
.pedido button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.pedido button:hover {
background-color: #45a049;
}
/* Estilo para as imagens */
.prato img {
display: block;
margin: 0 auto;
width: 200px;
height: auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Comida Mexicana</h1>
<div class="prato">
<input type="checkbox" id="taco" name="prato" value="taco">
<label for="taco"><strong>Taco</strong></label>
<img src="https://gkpb.com.br/wp-content/uploads/2021/09/taco-bell-power-tacos.jpg" alt="Taco">
<p class="descricao">Um taco é uma tortilha de milho ou farinha enrolada e recheada com carne, feijão, queijo, alface e outros ingredientes.</p>
</div>
<div class="prato">
<input type="checkbox" id="burrito" name="prato" value="burrito">
<label for="burrito"><strong>Burrito</strong></label>
<img src="https://cdn.britannica.com/13/234013-050-73781543/rice-and-chorizo-burrito.jpg" alt="Burrito">
<p class="descricao">Um burrito é uma tortilha de farinha grande e recheada com carne, arroz, feijão, queijo, guacamole, salsa e/ou outros ingredientes.</p>
</div>
<div class="prato">
<input type="checkbox" id="enchilada" name="prato" value="enchilada">
<label for="enchilada"><strong>Enchilada</strong></label>
<img src="https://www.hojetemfrango.com.br/wp-content/uploads/2019/02/shutterstock_638169013.jpg" alt="Enchilada">
<p class="descricao">Uma enchilada é uma tortilha de milho enrolada e recheada com carne, queijo e molho de pimenta.</p>
</div>
<div class="prato">
<input type="checkbox" id="guacamole" name="prato" value="guacamole">
<label for="guacamole"><strong>Guacamole</strong></label>
<img src="https://img.cybercook.com.br/receitas/228/guacamole-12.jpeg" alt="Guacamole">
<p class="descricao">Guacamole é uma pasta de abacate com tomate, cebola, coentro, suco de limão e sal.</p>
</div>
<div class="prato">
<input type="checkbox" id="quesadilla" name="prato" value="quesadilla">
<label for="quesadilla"><strong>Quesadilla</strong></label>
<img src="https://www.sabornamesa.com.br/media/k2/items/cache/cd4ddc1cc29ba262062a524265efa7f9_L.jpg" alt="Quesadilla">
<p class="descricao">Uma quesadilla é uma tortilla de farinha ou milho recheada com queijo e, por vezes, outros ingredientes, que é depois grelhada ou frita.</p>
</div>
<div class="pedido">
<button type="submit">Fazer Pedido</button>
</div>
</div>
</body>
</html>