Build a small table
Write an HTML table with a header row and three data rows for Name / Role / Years.
Track: HTML · Topic: tables · Reward: +25 XP
Starter
HTML
<!-- TODO: build the table here -->
CSS
table { border-collapse: collapse; width: 100%; font-family: Verdana; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
th { background: #f1f1f1; }