Why is the following code for captioning a table incorrect?
<table> <caption align="top">Table Title</caption> </table>
align is not a valid attribute for <caption>
align
<caption>
The text "Table Title" should be inside <th> tags
<th>
<caption> should be outside <table>
<table>
align="top" is incorrect syntax
align="top"