-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasteleria pedido.html
More file actions
62 lines (49 loc) · 2.44 KB
/
Pasteleria pedido.html
File metadata and controls
62 lines (49 loc) · 2.44 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
<!DOCTYPE html>
<html lang="eng">
<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">
</head>
<body>
<h1>Realiza tu pedido por favor</h1><br>
<form action="pedido.js">
<h2>Datos del cliente</h2>
<input type="text" id="name" name="name" placeholder="Escribe tu nombre"><br><br>
<input type="tel" id="fon" name="fon" maxlength="10" placeholder="Ingresa tu telefono"><br><br>
<input type="mail" id="correo" name="correo" placeholder="Coloca tu correo electronico"><br><br>
<h2>Arma tu pastel favorito</h2>
<p>Elegi un pastel o combinalo a tu gusto</p>
<input type="radio" id="tresleches" name="tresleches">
<label for="tresleches">Tres Leches</label><br>
<input type="radio" id="imposible" name="imposible">
<label for="imposible">Imposible</label><br>
<input type="radio" id="vainilla" name="vainilla">
<label for="vainilla">Vainilla</label><br>
<input type="radio" id="chocolate" name="chocolate">
<label for="chocolate">Chocolate</label><br>
<input type="radio" id="milhojas" name="milhojas">
<label for="milhojas">Mil hojas</label><br>
<input type="radio" id="ferrero" name="ferrero">
<label for="ferrero">Ferrero Roche</label><br><br>
<p>Elige tu adorno o combinalo!</p>
<input type="checkbox" id="letras" name="letras">
<label for="letras">Letras de Feliz cumpleaños</label><br>
<input type="checkbox" id="velitas" name="velitas">
<label for="velitas">Velitas</label><br>
<input type="checkbox" id="letrasyvelitas" name="letrasyvelitas">
<label for="letrasyvelitas">Combo letras y velitas</label><br>
<input type="checkbox" id="figura" name="figura">
<label for="figura">Figura de caricatura</label><br><br>
<label for="colorpastel">Elige el color de la cubierta de tu pastel</label>
<input type="color" id="colorapastel " name="colorpastel" ><br><br>
<input type="reset"><br>
<input type="submit"><br>
</form>
<br><br>
<h2>Contacto</h2>
<p>Tel 56-25-000-728</p>
<p>Avenida siemrpeviva #324 CP 56617 Gustavo A. Madero CDMX</p>
<p>Horario de atención de 11:00 am a 9:00 pm </p>
</body>
</html>