-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex4.html
More file actions
41 lines (21 loc) · 728 Bytes
/
index4.html
File metadata and controls
41 lines (21 loc) · 728 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Respuesta al ejercicio 4</title>
<link rel="stylesheet" href="style4.css">
</head>
<body>
<form name="input" action="" method="get">
Nombre:<input type="text" name="Name" size="20"><br>
Apellido:<input type="text" name="Name" size="20">
<div>
<label for='visitante'>Edad</label><br>
<input type='radio' id='familiar'>
<label for='familiar'>Menor de edad</label><br>
<input type='radio' id='externo'>
<label for='externo'>Mayor de edad</label>
</div>
<input type="button" value="Inscribirse">
</form>
</body>
</html>