Home > Tutorials > HTML > Tables
Tables
It's great to give our basic text some meaning, but what if we have data? It's for this reason we have tables!:
- <table>
- Everything about a table of daya goes in here.
- <caption>
- Give your table a meaningful caption, place it inside this tag.
- <tr>
- Each row of data goes inside this tag.
- <th>
- The header's for your table go inside here.
- <td>
- Actual table data goes inside here.
Excercise: Open "MyFirstPage.html". Add to it a meaningful table.
If your code looks like mine, you've succeeded, and can go on to another lesson.
Comment on this page:
Comments
No one has commented on this lesson yet. You can be the first!