About Lesson
Objective: Learn how to create and structure data in tables using HTML.
Key Concepts:
<table>
: Defines the table.<tr>
: Defines a table row.<th>
: Defines a table header.<td>
: Defines a table cell.<caption>
: Adds a title or description to the table.
Basic Table Structure:
Practice Exercise:
- Create a table with student names, grades, and subjects.
- Use the
<caption>
,<thead>
, and<tbody>
elements for better accessibility.