Caption HTML
HTML <caption> Tag To add a caption or a title to a table in HTML, the HTML <caption> tag is used. It is placed just after the <table> start tag and inside the <table> element. Usually, there is only one <caption> element is present in an HTML table. Syntax: <caption>Title of Table</caption> Example: <!DOCTYPE html> … Read more