Which table element allows you to add a descriptive title th
Which table element allows you to add a descriptive title that appears above the table by default? Please provide examples of websites that use table elements.
Solution
<caption> is used to add descriptive title hat appears above the table by default.
<!DOCTYPE html>
<html>
<head>
<table>
<caption>Descriptive Title Element </caption>
<tr>
<th>Hi</th>
<th>hey</th>
</tr>
<tr>
<td>sss</td>
<td>aaa</td>
</tr>
</table>
</body>
</html>
Examples of websites using table elements:www.w3schools.com,www.tutorialspoint.com
