-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServicios.html
More file actions
35 lines (30 loc) · 1.39 KB
/
Servicios.html
File metadata and controls
35 lines (30 loc) · 1.39 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
<!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>Pedidos</title>
</head>
<body>
<h1>Haga su pedido</h1>
<form action="Pedidos.js">
<label for="nombre">A nombre de quien es el pedido?</label> <br>
<input type="text" id="Nombre" name="nombre" placeholder="Nombre"><br>
<label for="nombre">Ingresa tu Telefono</label><br>
<input type="text" id="Telefono" name="Telefono" placeholder="Telefono"><br>
<label for="nombre">Ingresa tu correo?</label><br>
<input type="text" id="Correo" name="Correo" placeholder="Correo"><br>
<label for="nombre">Ingresa una descripcion general</label><br>
<input type="text" id="Descripcion" name="Descripcion" placeholder="Descripcion"><br>
<label for="nombre">Ingresa tu sabores favoritos</label><br>
<input type="text" id="Sabores" name="Sabores" placeholder="Sabores"><br>
<label for="nombre">Ingresa el adorno deseado</label><br>
<input type="text" id="Adorno" name="Adorno" placeholder= "Adorno"><br>
</form>
<a href="./Informacion.html">
<input type="button" value="Enviar pedido">
</a>
<p>Dirección AV. Sierra vista 360 Col. Lindavista, Telefono. 5568794545, Horario de atencion: 9:000 a 17;00 L a S</p>
</body>
</html>