Page 109 - Computer Class 08
P. 109
Adding Headings to the Table
We can also add the headings to the table.
The following codes are used to add headings in the table.
<html>
<head>
<title></title>
</head>
<body>
<table>
<TABLE BORDER=“5”>
<tr>
<TH COLSPAN=“2”>
<h3><br>TABLE TITLE</h3>
</th>
</tr> <th>Column A</th>
<TH>Column B</th>
<tr>
<td>Name</td>
<td>Age</td>
</tr>
<tr>
<td>Class</td>
Computer-8 109