-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio4.html
58 lines (54 loc) · 1.23 KB
/
Ejercicio4.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
<!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 4</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table>
<caption>TABLE FAMILY</caption>
<colgroup> <col span="4" style="background-color: aquamarine"></colgroup>
<tr><th colspan="4">Family</th></tr>
<tr>
<th>Name</th>
<th>Gender</th>
<th>Age</th>
<th>Relashionship</th>
</tr>
<tr>
<td>Juan</td>
<td>Male</td>
<td>23 Years</td>
<td>single</td>
</tr>
<tr>
<td>Juanita</td>
<td>Female</td>
<td>18 Years</td>
<td>single</td>
</tr>
<tr>
<td>Maria</td>
<td>Female</td>
<td>22 Years</td>
<td>Married</td>
</tr>
<tr>
<td>Jess</td>
<td>Female</td>
<td>26 Years</td>
<td>single</td>
</tr>
<tr>
<td>Carlos</td>
<td>Male</td>
<td>27 Years</td>
<td>Married</td>
</tr>
</table>
<br> <a href="Ejercicio3.html">Regresar al Formulario</a>
</body>
</html>