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
Expected
ol with three li: Mix, Bake, Cool
Hint
- <ol> wraps the <li> items.
- 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.