Tables, Iframes, and Embedded Content
<table>
<caption>Plan Limits</caption>
<thead>
<tr><th scope="col">Plan</th><th scope="col">Users</th></tr>
</thead>
<tbody>
<tr><td>Starter</td><td>3</td></tr>
</tbody>
</table>
<iframe src="https://example.com/embed" title="Analytics dashboard preview"></iframe>
Rules
- Use tables for data, not layout.
- Add
captionwhen the table needs context. - Give every iframe a meaningful
title.
What's Next
- Continue to 6. Semantic Layout