HTML bootcamp · Lab 10

Numbered steps

easyLists8 minLesson: Lists

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

QuestionHint and solution stay closed until you open them

Make an ordered list of three steps: Mix, Bake, Cool.

Use <ol> (not <ul>) so the browser numbers the steps 1, 2, 3 automatically.

Output. An ol with three li items.

Examples

Example 1
Expected
ol with three li: Mix, Bake, Cool
Hint
  1. <ol> wraps the <li> items.
  2. You do not type the numbers — the ol adds them.
Show correct code

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

<ol>
  <li>Mix</li>
  <li>Bake</li>
  <li>Cool</li>
</ol>
index.htmlLive preview · Check reads the DOM
ResultIdle
Run to see output. Check grades the tests.