-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10_Tables.html
More file actions
44 lines (41 loc) · 933 Bytes
/
10_Tables.html
File metadata and controls
44 lines (41 loc) · 933 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Tables</title>
<meta name='Description' content='This is awesome website!!'>
</head>
<body>
<!--
tr ==> table row
td ==> table data
th ==> table header
thead and tbody ==> just help in organising
colspan ==> defines column space
-->
<table>
<thead>
<caption>
<h3>List of Numbers</h3>
</caption>
<tr>
<th>Num1</th>
<th>Num2</th>
<th>Num3</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">One</td>
<td>Two</td>
<td>Three</td>
</tr>
<tr>
<td>Four</td>
<td>Five</td>
<td>Six</td>
</tr>
</tbody>
</table>
</body>
</html>