-
Notifications
You must be signed in to change notification settings - Fork 0
/
opiniones.html
70 lines (68 loc) · 3.46 KB
/
opiniones.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="keywords" content="Brian Kernighan,Dennis Ritchie, Ritchie,C,Computación,UNIX,Unix,Opiniones">
<meta name="author" content="Pablo Fernández Martínez">
<meta name="description" content="Opiniones de Brian Kernighan y Dennis Ritchie">
<meta name ="viewport" content ="width=device-width, initial scale=1.0" />
<title>Premios de Brian Kernighan y Dennis Ritchie</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/posicionamiento.css" />
<link rel="stylesheet" type="text/css" media="(max-width: 400px)" href="estilo/posicionamientoMovil.css" />
</head>
<body>
<header>
<h1>Brian Kernighan y Dennis Ritchie</h1>
</header>
<main>
<section>
<h2>¿Qué opinas?</h2>
<p>Rellene este formulario con su opinión sobre Dennis Ritchie y Brian Kernighan, sus aportaciones, logros y trabajos</p>
</section>
<section>
<h2>Formulario</h2>
<form name="opiniones">
<fieldset>
<legend>¿Quien eres?</legend>
<p><label for="nombreText">Escribe tu nombre: <input id="nombreText" type="text"></label></p>
<p><label for="apellidoText">Escribe tus apellidos: <input id="apellidoText" type="text"></label></p>
<p><label for="fechaNac">Fecha de nacimiento <input id="fechaNac" type="date"></label></p>
<p><label for="correo">Correo <input id="correo" type="email"></label></p>
</fieldset>
<fieldset>
<legend> ¿Qué opinas de la información mostrada? </legend>
<p><label for="opInfo1"> <input id="opInfo1" type = radio name=OpInfo> Muy buena </label></p>
<p><label for="opInfo2"> <input id="opInfo2" type = radio name=OpInfo> Regular </label></p>
<p><label for="opInfo3"> <input id="opInfo3" type = radio name=OpInfo> Mala </label></p>
</fieldset>
<fieldset>
<legend>¿A quién conocias?</legend>
<p><label for="conocia1Check"> <input id="conocia1Check" type="checkbox"> Dennis Ritchie </label></p>
<p><label for="conocia2Check"> <input id="conocia2Check" type="checkbox"> Brian Kernighan </label></p>
</fieldset>
<fieldset>
<legend>Escribe tu opinión</legend>
<p><label for="textAreaOp"> ¿Qué opinas?<textarea id="textAreaOp"></textarea> </label></p>
</fieldset>
<input type="submit" value="Enviar" >
</form>
</section>
</main>
<aside>
<h2>Contenidos</h2>
<nav>
<ul>
<li><a href="/sew/" accesskey="I" tabindex="1">Inicio</a></li>
<li><a href="/sew/logros" accesskey="L" tabindex="2">Logros</a></li>
<li><a href="/sew/premios" accesskey="P" tabindex="3">Premios</a></li>
<li><a href="/sew/opiniones" accesskey="O" tabindex="4">Opiniones</a></li>
</ul>
</nav>
</aside>
<footer>
<img src="multimedia/HTML5.png" alt=" HTML5 Válido!" />
<img src="multimedia/CSS3.png" alt="CSS Válido!" />
</footer>
</body>
</html>