-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtablas.html
138 lines (127 loc) · 2.35 KB
/
tablas.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!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>Document</title>
<style>
table,
td {
border: 2px solid rgb(97, 28, 187);
}
thead, tfoot{
background-color: rgb(231, 15, 15);
color: rgb(255, 255, 255);
}
</style>
</head>
<body>
<table>
<tr>
<td>Guillermo</td>
<td>Chang</td>
</tr>
<tr>
<td>Lupita</td>
<td>Ramírez</td>
</tr>
<tr>
<td>Karen</td>
<td>Gutiérrez</td>
</tr>
<tr>
<td>Ernesto</td>
<td>Martínez</td>
</tr>
</table>
<p>Tabla con encabezados</p>
<table>
<tr>
<th>Nombre</th>
<th>Apellido</th>
</tr>
<tr>
<td>Sofía</td>
<td>Chang</td>
</tr>
<tr>
<td>Lupita</td>
<td>Ramírez</td>
</tr>
</table>
<p>Tabla con encabezado, cuerpo y pie de tabla</p>
<table>
<thead>
<tr>
<th>Encabezado 1</th>
<th>Encabezado 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Contenido 1</td>
<td>Contenido 2</td>
</tr>
<tr>
<td>Contenido 3</td>
<td>Contenido 4</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Pie de tabla 1</td>
<td>Pie de tabla 2</td>
</tr>
</tfoot>
</table>
<table>
<colgroup>
<col span="3" style="background-color:red" >
<col span="1" style="background-color:yellow">
</colgroup>
<tr>
<th>Nombre</th>
<th >Apellido</th>
<th>Edad</th>
<th>Fetiche</th>
</tr>
<tr>
<td>Guillermo</td>
<td>Chang</td>
<td>34</td>
<td>Furros</td>
</tr>
</table>
<p>Pie de foto</p>
<table>
<caption>Nombre de tabla</caption>
<tr>
<th>Nombre</th>
<th>Apellido</th>
</tr>
<tr>
<td>Guillermo</td>
<td>Chang</td>
</tr>
<tr>
<td>Lupita</td>
<td>Ramírez</td>
</tr>
</table>
<table>
<thead>
<tr>
<th colspan="3">The table header</th>
</tr>
</thead>
<tbody>
<tr>
<td>The table body</td>
<td>with three columns</td>
<td>extra</td>
</tr>
</tbody>
</table>
</body>
</html>