-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio3.html
55 lines (52 loc) · 1.49 KB
/
Ejercicio3.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejercicio 3</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Formulario</h1>
<br> <a href="Ejercicio4.html">Tabla Familia</a>
<div>
<form action="">
<label for="nombre">Cual es su nombre:</label>
<input type="text"> <br>
<label for="apellido">Cual es su apellido:</label>
<input type="text"> <br>
<label for="direccion">Cual es su direccion:</label>
<input type="text"> <br>
<label for="ciudad">Cual es su ciudad:</label>
<input type="text"> <br>
<label for="pais">Cual es su pais:</label>
<input type="text"> <br>
<input type="submit" id="submit" value="ENVIAR">
</form>
</div>
<!--
<br>
<br>
<div>
<table>
<caption>Informacion:</caption>
<colgroup> <col span="3" style="background-color: aquamarine"></colgroup>
<tr>
<th>Nombre</th>
<th>Apellido</th>
<th>Direccion</th>
<th>Ciudad</th>
<th>Pais</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div> -->
</body>
</html>