-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
91 lines (91 loc) · 3.25 KB
/
contacto.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Contacta con Antonio Soto Patiño</title>
</head>
<body>
<header>
<nav></nav>
<h1 id="titulocontacto" class="titulo">Contacto</h1>
</header>
<main>
<article class="">
<section>
<form action="/formulario" method="post">
<label for="nombre">Nombre</label>
<input
type="text"
id="nombre"
name="nombre"
placeholder="Tu nombre..."
value=""
/><br />
<label for="apellidos">Apellidos</label>
<input
type="text"
id="apellidos"
name="apellidos"
placeholder="Tus apellidos..."
value="Apellidos por defecto"
/><br />
<label for="clave">Contraseña</label>
<input type="password" id="clave" name="clave" value="" /><br />
<label for="fecha">Fecha</label>
<input type="date" id="fecha" name="fecha" value="" /><br />
<label for="correo">Nombre</label>
<input type="email" id="correo" name="correo" value="" /><br />
<label for="rango">Rango</label>
<input type="range" id="rango" name="rango" value="" /><br />
<label for="">Adjuntar o seleccionar archivo</label>
<input type="file" id="archivo" name="archivo" value="" /><br />
<input type="checkbox" name="caja1" value="" />
<input type="checkbox" name="caja2" value="" />
<span
><-- Cuadros de verificación | Botones de radio con idéntico
"nombre" para hacerlos excluyentes --></span
>
<input type="radio" name="radio1" value="" />
<input type="radio" name="radio2" value="" /><br />
<label for="">Pulsa para enviar</label>
<input
type="submit"
id="enviar"
name="enviar"
value="Enviar"
/><br />
<button type="button" name="boton">
Botón <img src="" alt="Imagen en botón" />
</button>
<button type="reset" name="limpiar">Limpiar datos</button>
<button type="submit" name="botonenvio">Envío</button>
<!-- el botón "submit" es mucho más personalizable que el input equivalente -->
</form>
<p>
Más información en
<a href="https://www.w3schools.com/Tags/att_input_type.asp"
>W3Schools</a
>
</p>
<hr />
<label for="cuadrotexto">Cuadro de texto</label><br />
<textarea id="cuadrotexto" name="name" rows="8" cols="80">
Enróllate en este cuadro y cuéntame tu vida
</textarea>
<hr />
</section>
<section>
<a href="index.html">Volver a la página principal</a>
</section>
</article>
</main>
<footer>
<p><a href="#titulocontacto">Ir al comienzo</a></p>
<p>
Contacta con mi
<a href="mailto:relatosparaescuchar@gmail.com">correo</a>
</p>
<p>Creado en 2022 por Antonio Soto Patiño</p>
</footer>
</body>
</html>