-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
78 lines (78 loc) · 2.06 KB
/
index2.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
<html>
<head>
<title>Table</title>
<link href="./styles.css2" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap" rel="stylesheet">
</head>
<body>
<h1>HTML Table Reference</h1>
<h2>Table Tags</h2>
<table>
<thead>
<tr>
<th>Tag</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="prima"><span><table></span></td>
<td>Table</td>
<td>The wrapper element for all HTML tables.</td>
</tr>
<tr>
<td class="prima"><span><thead></span></td>
<td>Table Head</td>
<td>The set of rows defining the column headers in a table.</td>
</tr>
<tr>
<td class="prima"><span><tbody></span></td>
<td>Table Body</td>
<td>The set of rows containing actual table data.</td>
</tr>
<tr>
<td class="prima"><span><tr></span></td>
<td>Table Row</td>
<td>The table row container.</td>
</tr>
<tr>
<td class="prima"><span><td></span></td>
<td>Table Data</td>
<td>The table row container.</td>
</tr>
<tfoot>
<tr>
<td class="prima"><span><tfoot></span></td>
<td>Table foot</td>
<td>The set of rows defining the footer in a table.</td>
</tr>
</tfoot>
</tbody>
</table>
<h2>Table Atributes</h2>
<table>
<thead>
<tr>
<th>Attribute</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="prima"><span>colspan</span></td>
<td>Column Span</td>
<td>Defines how many columns a td element should span.</td>
</tr>
</tbody>
<tfoot>
<td class="prima"><span>rowspan</span></td>
<td>Row Span</td>
<td>Defines how many rows a td element should span.</td>
</tfoot>
</table>
</body>
</html>