-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasteleria.html
128 lines (120 loc) · 3.21 KB
/
pasteleria.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EAT ME</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="img/eat-me.png" alt="Logo Eat me">
<p>"Si quieres hacer un pastel de manzana desde el principio, primero debes crear el Universo." <br>
— Carl Sagan</p>
<hr>
<br><br>
<img class="foto" src="img/flores.png" alt="patel de flores">
<img class="foto" src="img/merengue.png" alt="pastel de merengue">
<h2>Pasteles</h2>
<table>
<tr>
<th>Sabor</th>
<th>$</th>
</tr>
<tr>
<td>chocolate</td>
<td>400</td>
</tr>
<tr>
<td>manzana</td>
<td>400</td>
</tr>
<tr>
<td>red velvet</td>
<td>300</td>
</tr>
<tr>
<td>vainilla</td>
<td>200</td>
</tr>
</table>
<br>
<h3>Combinados</h3>
<table>
<tr>
<th>Sabores</th>
<th>$</th>
</tr>
<tr>
<td>red velvet - vainilla</td>
<td>270</td>
</tr>
<tr>
<td>chocolate - manzana</td>
<td>420</td>
</tr>
</table>
<br>
<h3>Adornos</h3>
<table>
<tr>
<th>Toppings</th>
<th>$</th>
</tr>
<tr>
<td>flores y frutos</td>
<td>100</td>
</tr>
<tr>
<td>merengue</td>
<td>80</td>
</tr>
</table>
<hr>
<br>
<!-- Formularios -->
<h2>Pedido</h2>
<form action="/accion.js" id="form1" method="post">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" placeholder="Ila">
<br><br>
<label for="tel">Teléfono:</label>
<input type="tel" id="tel" name="tel" placeholder="5555555555" maxlength="10">
<br><br>
<label for="correo">Correo:</label>
<input type="email" id="correo" name="correo" placeholder="ila@dominio.com">
<br><br>
<h3>Sabores de pastel</h3>
<label for=chocolate">chocolate</label>
<input type="checkbox" id="chocolate" name="chocolate">
<br>
<label for="manzana">manzana</label>
<input type="checkbox" id="manzana" name="manzana">
<br>
<label for="red velvet">red velvet</label>
<input type="checkbox" id="red velvet" name="red velvet">
<br>
<label for="vainilla">vainilla</label>
<input type="checkbox" id="vainilla" name="vainilla">
<br><br>
<h3>Adornos</h3>
<label for="frutos">Dorado</label>
<input type="checkbox" id="frutos" name="frutos">
<br>
<label for="merengue">Gris</label>
<input type="checkbox" id="merengue" name="merengue">
<br><br>
</form>
<a href="./pedido.html">
<input type="button" value="Hacer pedido">
</a>
<hr>
<br>
<p>Dirección: Coyoacán, Ciudad de México.</p>
<p>Teléfono: 55 5555 5555.</p>
<p>Horario: Jueves a lunes de 11am a 8pm.</p>
<footer>
<p><small>© 2022 Derechos Reservados a EAT ME.</small></p>
</footer>
</body>
</html>