This table's column headers were written with <td> instead of <th>, so screen readers can't announce them as headers. Fix the header row.
Acceptance criteria
- 1.Use <th> for both header cells.
This table's column headers were written with <td> instead of <th>, so screen readers can't announce them as headers. Fix the header row.
<table> <thead><tr><td>Name</td><td>Score</td></tr></thead> <tbody><tr><td>Devon</td><td>88</td></tr></tbody> </table>
Output ready when you are
Press Run to render your code, or Submit to validate your solution.