add description to table html code example
Example 1: how to add a description to a table html
<table>
<caption>Table Description</caption>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</table>
Example 2: table css
tr , th , td {
border: 1px solid black;
padding: 5%;
text-align: center;
}