forked from ActoSoft/WebDevCourse-HTML-Newspaper-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
104 lines (104 loc) · 3.65 KB
/
contacto.html
File metadata and controls
104 lines (104 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<header>
<nav>
<a href="/index.html">Inicio</a>
<a href="/deportes.html">Deportes</a>
<a href="/internacional.html">internacional</a>
<a href="/contacto.html">Contacto</a>
</nav>
</header>
<main>
<h1>Ponte en contacto con nosotros</h1>
<p>Para nosotros es muy importante saber tu opinión por favor completa el siguiente formulario</p>
<form action="#" method="GET" enctype="multipart/form-data">
<div>
<label for="first-name">Nombre</label>
<input
type="text"
name="first-name"
id="first-name"
placeholder="Escribe tu nombre"
maxlength="20"
minlength="4"
>
</div>
<br>
<div>
<label for="last-name">Apellidos</label>
<input
type="text"
name="last-name"
id="last-name"
placeholder="Escribe tus apellidos"
maxlength="30"
minlength="4"
>
</div>
<br>
<div>
<label for="email">Correo electrónico</label>
<input type="email" name="email" id="email">
</div>
<br>
<div>
<label for="age">Edad</label>
<input
type="number"
name="age"
id="age"
>
</div>
<br>
<div>
<label for="gender">Género</label>
<select name="gender" id="gender">
<option value="male">Masculino</option>
<option value="female">Femenino</option>
<option value="other">Otro</option>
</select>
</div>
<br>
<div>
<h4>Elige tu deporte favorito</h4>
<label for="futbol">Futbol</label>
<input type="checkbox" name="sports" id="futbol" value="futbol">
<label for="basket">Basketball</label>
<input type="checkbox" name="sports" id="basket" value="basket">
</div>
<div>
<h4>Elige de donde quieres obtener noticias internacionales</h4>
<label for="futbol">Estados Unidos</label>
<input type="checkbox" name="sports" id="futbol" value="futbol">
<label for="basket">Europa</label>
<input type="checkbox" name="sports" id="basket" value="basket">
</div>
<br>
<br>
<div>
<h4>
Sube alguna noticia que quieras que publiquemos <span>
<small>(Solo aceptamos formato PDF)</small>
</span>
</h4>
<label for="file">Sube tu archivo</label>
<input type="file" name="file" id="file" accept=".pdf">
</div>
<br>
<input type="submit" value="Enviar datos">
</form>
</main>
<footer>
<a href="/index.html">Inicio</a>
<a href="/deportes.html">Deportes</a>
<a href="/internacional.html">internacional</a>
<a href="/contacto.html">Contacto</a>
</footer>
</body>
</html>