-
Notifications
You must be signed in to change notification settings - Fork 0
/
pedido.html
43 lines (40 loc) · 1.73 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
<!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>Levantar pedido</title>
</head>
<body>
<img src="https://i.imgur.com/RX4vXvX.png" alt="Logo Pasteleria Gaby" width="150px">
<h1>Pedidos Pasteleria Gaby</h1>
<form action="pedido.js">
<label for="Nombre">Ingrese su nombre</label><br>
<input type="text" id="Nombre" name="Nombre" placeholder="Nombre">
<br>
<label for="Telefono">Ingrese su telefono</label><br>
<input type="text" id="Telefono" name="Telefono" placeholder="Telefono">
<br>
<label for="Correo Electronico">Ingrese su correo</label><br>
<input type="text" id="Correo" name="Correo" placeholder="Correo Electronico">
<br>
<label for="Descripcion de Pastel">Ingrese los detalles del pastel</label><br>
<input type="text" id="pastel" name="pastel" placeholder="Detalles Pastel">
<br>
<label for="Seleccione los sabores">Ingrese los sabores del pastel</label><br>
<input type="text" id="sabores" name="sabores" placeholder="Sabores Pastel">
<br>
<label for="Descripcion de Pastel">Ingrese los adornos del pastel</label><br>
<input type="text" id="adornos" name="adornos" placeholder="Adornos Pastel">
<br><br>
<input type="reset">
<input type="submit">
</form>
<footer>
<p>Direccion: Rafael Lucio #414 Colonia Centro</p>
<p>Telefono: 812798712</p>
<p>Horarios de Atencion: Lunes a Sabado de 9:00am a 6:00pm</p>
</footer>
</body>
</html>