-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
96 lines (82 loc) · 3.42 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
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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>SEW.P0</title>
<link rel="stylesheet" type="text/css" href="estilo.css" />
<meta name ="viewport" content="width=device-width,initial scale=1.0">
</head>
<body>
<header>
<!-- Datos con el contenidos que aparece en el navegador -->
<h1>Formulario</h1>
<nav>
<a title="Tim Berners-Lee"
tabindex=
"1"
accesskey="T"
href= "index.html">
Tim Berners-Lee</a><br>
<a title="Protocolo HTTP"
tabindex=
"2"
accesskey="H"
href= "protocoloHTTP.html">
Protocolo HTTP</a><br>
<a title= "World Wide Web"
tabindex=
"3"
accesskey="W"
href= " WorldWideWeb.html">
World Wide Web</a><br>
</nav>
</header>
<form name="Formulario">
<main>
<section>
<h2>Datos personales</h2>
<label for="Nombre">Nombre</label>
<input type="text" id="Nombre"><br>
<label for="Apellidos">Apellidos</label>
<input type="text" id="Apellidos"><br>
<label for="NumeroTelefono">Numero de Telefono</label>
<input type="number" id="NumeroTelefono"><br>
</section>
<section>
<h3>HTTP</h3>
<fieldset>
<legend>
Tienes conocimientos sobre HTTP
</legend>
<label for="yes">Si</label>
<input id="yes" type="radio" name="RadioBoton" value="Si">
<label for="no">No</label>
<input id="no" type="radio" name="RadioBoton" value="No">
</fieldset>
<p>Marqué si conoces o te suenan algunas de las diversas versiones de HTTP siguientes</p>
<fieldset>
<legend>Versiones:</legend>
<label for="ck09">0.9</label>
<input id="ck09" type="checkbox" value="0.9">
<label for="ck1.0">HTTP/1.0</label>
<input id="ck1.0" type="checkbox" value="1.0">
<label for="ck1">HTTP/1.1</label>
<input id="ck1" type="checkbox" value="1">
<label for="ck1.2">HTTP/1.2</label>
<input id="ck1.2" type="checkbox" value="1.2">
<label for="ck2">HTTP/2</label>
<input id="ck2" type="checkbox" value="2">
<label for="ck3">HTTP/3</label>
<input id="ck3" type="checkbox" value="3">
</fieldset>
</section>
</main>
<footer>
<label for="num">Puntuacion de la página</label><br>
<input id="num" type=number min="0" max="10" placeholder="Puntue con un numero del 0 al 10"><br>
<input type="submit" id="Finalizar" value="Finalizar">
</footer>
</form>
</body>
</html>