-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio5.html
More file actions
133 lines (132 loc) · 4.32 KB
/
ejercicio5.html
File metadata and controls
133 lines (132 loc) · 4.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Formulario de Contacto</title>
<link href="ejercicio5.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<h1>Contacto</h1>
<p>Escribe!</p>
<form>
<fieldset>
<legend>Información</legend>
<p>
Nombre
<input type="text" name="nombre" value="" />
</p>
<p>
Email
<input type="text" name="email" value="" />
</p>
<p>
Telefono
<input type="text" name="tlf" value="" />
</p>
<p>
Direccion
<input type="text" name="dir" value="" />
</p>
<p>
<label for="comunidad">Comunidad</label>
<select name="comunidad">
<option value=""></option>
<option value="andalucia">Andalucía</option>
<option value="aragon">Aragón</option>
<option value="asturias">Principado de Asturias</option>
<option value="baleares">Islas Baleares</option>
<option value="pais_vasco">País Vasco</option>
<option value="canarias">Canarias</option>
<option value="cantabria">Cantabria</option>
<option value="castilla_la_mancha">Castilla-La Mancha</option>
<option value="castilla_leon">Castilla y León</option>
<option value="cataluna">Cataluña</option>
<option value="extremadura">Extremadura</option>
<option value="galicia">Galicia</option>
<option value="madrid">Comunidad de Madrid</option>
<option value="murcia">Región de Murcia</option>
<option value="navarra">Comunidad Foral de Navarra</option>
<option value="la_rioja">La Rioja</option>
<option value="valencia">Comunidad Valenciana</option>
</select>
</p>
<p>
Código Postal
<input type="text" name="dir" value="" />
</p>
</fieldset>
</form>
<form>
<fieldset>
<span> Pincha para recibir información: </span>
<input name="visitas" type="checkbox" />
<div class="info">
<input type="checkbox" id="tenerife" name="tema" value="Tenerife" />
<label for="tenerife">Tenerife</label><br />
<input
type="checkbox"
id="calma"
name="tema"
value="Tenerife Calma"
/>
<label for="calma">Tenerife Calma</label><br />
<input
type="checkbox"
id="playas"
name="tema"
value="Tenerife playas"
/>
<label for="playas">Tenerife playas</label><br />
<input
type="checkbox"
id="bici"
name="tema"
value="Bici Tenerife"
/>
<label for="bici">Bici Tenerife</label><br />
<input
type="checkbox"
id="mar"
name="tema"
value="Tenerife del mar"
/>
<label for="mar">Tenerife del mar</label><br />
<input
type="checkbox"
id="ninos"
name="tema"
value="Niños Tenerife"
/>
<label for="ninos">Niños Tenerife</label><br />
<input
type="checkbox"
id="naturaleza"
name="tema"
value="Tenerife Naturaleza"
/>
<label for="naturaleza">Tenerife Naturaleza</label><br />
<input
type="checkbox"
id="teide"
name="tema"
value="Tenerife Teide"
/>
<label for="teide">Tenerife Teide</label><br />
<input
type="checkbox"
id="comida"
name="tema"
value="Comida Tenerife"
/>
<label for="comida">Comida Tenerife</label><br />
</div>
<p>
<input type="submit" value="Enviar" />
</p>
</fieldset>
</form>
</div>
</body>
</html>