What are the Table Headers & Caption and the importance to Webpages?

Asked By 0 points N/A Posted on -
qa-featured

Hello,

What is the Table Headers & caption? How does it work? Where does it use? Please tell me about details. Is Table Headers & caption important to web page?

SHARE
Best Answer by Willet Engelin
Answered By 5 points N/A #164804

What are the Table Headers & Caption and the importance to Webpages?

qa-featured

Hello,

In table tag you can add header and caption.

Header refers to the header row and column which specialties are the text will bold and specific size font.

The caption is adding for to specify the table characteristics.

Example here is how to add table header and caption.

<Table width="90%" border="1" cellspacing="5" cellpadding="5">

<Caption>Characteristic of the table</caption>

<tr>

<th>Roll</th>

<th>Name</th>

<th>address</th>

</tr>

<tr>

<th>01</th>

<td>rahim</td>

<td>uk</td>

</tr>

<tr>

</table>

Thanks.

Best Answer
Best Answer
Answered By 0 points N/A #164805

What are the Table Headers & Caption and the importance to Webpages?

qa-featured

Hello Xavier,

Here I am going to show you header and caption in table for excel and web page. I think after reading you will get all information about it.

The header of a table signifies the key information about the entire row or column. In a simple table can holds a maximum number of one rowed header or one columned header. In a table title should use to describe about the entire work introduction that help to user to understand easily about the entire table. 

Headers usually use on the first row or column and usually show as bold and captions or titles are used on top of the table. It generally uses for many works of exes, statistical uses, survey use, to save a record of any calculation like salary, export, import, goods and data. See the below image.

For web page generally HTML table tags are used to describe the table and caption. In HTML header are generally kept between <th> </th> tag and data are kept in <td></td> tags under <tr> </tr> table tags for web page.

Best of luck.

Related Questions