-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomentariojony.html
69 lines (58 loc) · 1.61 KB
/
comentariojony.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Comentario</title>
</head>
<body>
<br/>
<br/>
<br/>
<center>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
Nombre <input type="text" name="nombre" size="30" maxlength="100">
<br/>
<br/>
Email <input type="text" name="email" size="25" maxlength="100" value="">
<br/>
<br/>
Celular <input type="text" name="celular" size="20" maxlength="60">
<br/>
<br/>
Sexo
<br/>
<br/>
<input type="radio" name="sexo" value="Varon" checked> Hombre
<br/>
<br/>
<input type="radio" name="sexo" value="Hembra"> Mujer
<br/>
<br/>
Con que frecuencia prepara cebiche:
<br/>
<br/>
<select name="utilizacion">
<option value="1">Una vez al dia.
<option value="2">Tres veces a la semana.
<option value="3">Tres veces dada dos semanas.
<option value="4">Una vez al mes.
</select>
<br/>
<br/>
Comentarios sobre su satisfacción personal
<br>
<textarea cols="30" rows="7" name="comentarios"></textarea>
<br>
<br>
<input type="checkbox" name="recibir_info" checked>
Deseo recibir notificación sobre las ultimas recetas de preparacion de cebiche.
<br>
<br>
<input type="submit" value="Enviar formulario">
<br>
<br>
<input type="Reset" value="Borrar todo">
</form>
</center>
</body>
</html>