HTML bootcamp · Lab 40

Nav list

easyLists10 minLesson: Lists

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

QuestionHint and solution stay closed until you open them

Unordered list of three links: Home → /, About → /about, Contact → /contact.

Examples

Example 1
Expected
ul > li > a ×3
Hint
  1. Each li wraps an a.
Show correct code

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

<ul>
  <li><a href="/">Home</a></li>
  <li><a href="/about">About</a></li>
  <li><a href="/contact">Contact</a></li>
</ul>
index.htmlLive preview · Check reads the DOM
ResultIdle
Run to see output. Check grades the tests.