Computer Science, asked by wandame, 1 year ago

explain caption of a table

Answers

Answered by vershamishra12oycd27
2

Basically, <caption> tag defines a table caption and  must be inserted immediately after the <table> tag.By default, a table caption will be center-aligned above a table.

for eg:

<table>
  <caption>Data of student</caption>
  <tr>
    <th>Name</th>
    <th>Fatrher;s name</th>

<tr>

    <td>Versha</td>
    <td>Ravi</td>
  </tr>
 
</table>

hope this will help u!! if u like this..mark it as brainliest answer.

Answered by siddhartharao77
0
<table>
<caption align="bottom">Figure 1</caption>
<tr>
<th>Number1</th>
<th>Number2</th>
</tr>
<td>One</td>
<td>Two</td>
</tr>
</table>
</html>
Similar questions