-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable.html
More file actions
95 lines (90 loc) · 2.22 KB
/
Table.html
File metadata and controls
95 lines (90 loc) · 2.22 KB
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
<!DOCTYPE html>
<html lang="en">
<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>Table in HTML</title>
</head>
<body>
<!--Table in HTML-->
<table border="2px">
<tr>
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
<tr>
<td>Four</td>
<td>Five</td>
<td>Six</td>
</tr>
</table>
<hr>
<!--Table with Heading-->
<table border="2px">
<tr>
<th></th>
<th>Heading col 1</th>
<th>Heading col 2</th>
<th>Heading col 3</th>
</tr>
<tr>
<th>Heading row 1</th>
<td>one</td>
<td>two</td>
<td>three</td>
</tr>
<tr>
<th>Heading row 2</th>
<td>four</td>
<td>five</td>
<td>six</td>
</tr>
<tr>
<th>Heading row 3</th>
<td>seven</td>
<td>eight</td>
<td>nine</td>
</tr>
<tr>
<th>Heading row 3</th>
<td>ten</td>
<td>eleven</td>
<td>twelve</td>
</tr>
</table>
<hr>
<!--Merge row or col with rowspan or colspan repectively-->
<table border="2px">
<tr style="color:red;">
<th></th>
<th>Heading col 1</th>
<th>Heading col 2</th>
<th>Heading col 3</th>
</tr>
<tr>
<th>Heading row 1</th>
<td colspan="3">colspan="3"</td>
</tr>
<tr>
<th>Heading row 2</th>
<td>four</td>
<td>five</td>
<td>six</td>
</tr>
<tr>
<th>Heading row 3</th>
<td>seven</td>
<td rowspan="2">rowspan="2"</td>
<td>nine</td>
</tr>
<tr>
<th>Heading row 3</th>
<td>ten</td>
<td>eleven</td>
</tr>
</table>
<!--Caption: Main heading to Table-->
</body>
</html>