-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPedido.html
51 lines (50 loc) · 2.22 KB
/
Pedido.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
<!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>Document</title>
</head>
<body>
<form action=""></form>
<label for="nombre">Cual es tu nombre?</label><br>
<input type="text" name="nombre" id="nombre"><br><br>
<label for="telefono">Cual es tu teléfono?</label><br>
<input type="tel" name="telefono" id="telefono"><br><br>
<label for="correo">Cual es tu correo electrónico?</label><br>
<input type="email" name="correo" id="correo"><br><br>
<label for="descripcion">Escribe una descripción general del pastel</label><br>
<input type="text" name="descripcion" id="descripcion">
<p>Arma tu pastel</p>
<p>Elije tus sabores</p>
<input type="checkbox" name="sabor" id="vainilla" Value="Vainilla">
<label for="vainilla">Vainilla</label><br>
<input type="checkbox" name="sabor" id="chocolate" Value="Chocolate">
<label for="chocolate">Chocolate</label><br>
<input type="checkbox" name="sabor" id="tres_leches" Value="Tres Leches">
<label for="tres_leches">Tres Leches</label><br>
<input type="checkbox" name="sabor" id="oreo" Value="Oreo">
<label for="oreo">Oreo</label><br>
<input type="checkbox" name="sabor" id="cajeta" Value="Cajeta">
<label for="cajeta">Cajeta</label>
<p>Elije tus adornos</p>
<input type="checkbox" name="adornos" id="flores" Value="flores">
<label for="flores">Flores</label><br>
<input type="checkbox" name="adornos" id="fruta" Value="fruta">
<label for="fruta">Fruta</label><br>
<input type="checkbox" name="adornos" id="figuras_betun" Value="Figuras Betun">
<label for="figuras_betun">Figuras Betun</label>
<br><br>
<a href="">
<input type="submit" value="Realizar Pedido">
</a>
</form>
<br><br>
<a href="./Pastelazo.html">
<input type="button" value="Regresar al Menu">
</a>
<br><br>
<footer>Centro Historico 26 CDMX, Telefono: 5548761293, Horario de atencion: Lun-Vie 9:00-19:00</footer>
</body>
</html>