-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
61 lines (60 loc) · 3.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<meta name="author" content="Rafael Muñiz Reguera"/>
<meta name="description" content="Un formulario para recoger la opinion del usuario"/>
<meta name="keywords" content="opinion,email,Valoracion"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<title>RUST-Formulario</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css"/>
<link rel="stylesheet" type="text/css" href="estilo/layout.css"/>
</head>
<body>
<header>
<h1>RUST</h1>
</header>
<nav>
<a href="index.html" accesskey="i" tabindex="1">Inicio</a>
<a href="historia.html" accesskey="h" tabindex="2">Historia</a>
<a href="popularidad.html" accesskey="p" tabindex="3">Popularidad</a>
<a href="formulario.html" accesskey="u" tabindex="4">Formulario</a>
</nav>
<main>
<h2>Formulario</h2>
<section>
<h3>Informacion</h3>
<p>Rellene este formulario para tener una valoración sobre las opiniones de los usuarios y sobre la utilidad de la información.</p>
<form name="formulario">
<p><label for="email">E-mail:</label></p>
<p><input id="email" type="email"></p>
<p><label for="edad">Edad:</label></p>
<p><input id="edad" type="number"></p>
<p><label for="fecha">Fecha:</label></p>
<p><input id="fecha" type="date"></p>
<fieldset>
<legend>Selecciona todos los lenguajes que conoces:</legend>
<p><input id="JS" type="checkbox" value="JavaScript"><label for="JS">JavaScript</label></p>
<p><input id="HTML/CSS" type="checkbox" value="HTML/CSS"><label for="HTML/CSS">HTML/CSS</label></p>
<p><input id="Python" type="checkbox" value="Python"><label for="Python">Python</label></p>
<p><input id="C++" type="checkbox" value="C++"><label for="C++">C++</label></p>
<p><input id="PHP" type="checkbox" value="PHP"><label for="PHP">PHP</label></p>
</fieldset>
<fieldset>
<legend>Valoracion:</legend>
<p><input id="muyMal" type="radio" value="muyMal" name="valoracion"><label for="muyMal">Muy mal</label></p>
<p><input id="mal" type="radio" value="mal" name="valoracion"><label for="mal">Mal</label></p>
<p><input id="neutro" type="radio" value="neutro" name="valoracion"><label for="neutro">Neutro</label></p>
<p><input id="bien" type="radio" value="bien" name="valoracion"><label for="bien">Bien</label></p>
<p><input id="muyBien" type="radio" value="muyBien" name="valoracion"><label for="muyBien">Muy bien</label></p>
</fieldset>
<input type="submit" value="OK">
</form>
</section>
</main>
<footer>
<a href="https://www.rust-lang.org/es" ><img src="multimedia/rustFooter.png" alt="Footer de Rust"/></a>
<a href="https://twitter.com/rustlang" ><img src="multimedia/twitter.png" alt="Footer del twitter de Rust" /></a>
</footer>
</body>
</html>