HTML bootcamp · Lab 06

Two-column table

mediumTables12 minLesson: Tables

Read the question, write HTML on the right, then Preview or Check.

QuestionHint and solution stay closed until you open them

A table with a header row Drink / Price, then one data row Espresso / 3.

Examples

Example 1
Expected
th Drink, th Price, td Espresso, td 3
Hint
  1. tr for a row, th in the header, td in the body.
Show correct code

Peek only after you have tried. You can still Check your own version.

<table>
  <tr><th>Drink</th><th>Price</th></tr>
  <tr><td>Espresso</td><td>3</td></tr>
</table>
index.htmlLive preview · Check reads the DOM
ResultIdle
Run to see output. Check grades the tests.