-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.html
38 lines (38 loc) · 1.27 KB
/
formulario.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Formulario </title>
</head>
<body>
<form action="" method="">
<p>
<input type="text" name="nombre/s" placeholder="nombre/s">
</p>
<p>
<input type="text" name="apellido/s" placeholder="apellido/s">
</p>
<p>
<input type="text" name="email" placeholder="mail">
</p>
<p>
<label for="titulo"> Sexo </label>
<select name="titulo" id="">
<option value="hombre"> Hombre </option>
<option value="mujer"> Mujer </option>
<option value="helicoptero_apache"> Helicoptero Apache </option>
<option value="otro_ganzo"> Otro Ganzo </option>
</select>
</p>
<p>
<label for="consulta"> Consulta </label>
<textarea name="comentaios" id="" cols="50" rows="10"></textarea>
</p>
<p>
<input type="submit" value="Enviar" />
<input type="reset" value="Borrar" />
</p>
</form>
</body>
</html>