0

HTML lists playground

Combine the three HTML list types, create nested levels, and generate semantic markup with ul, ol, li, dl, dt, and dd.

Ask AI

HTML lists playground

Response generated with openai/gpt-5.4-nano. AI can make mistakes. Always review the result.

Unordered list

  • Milk
  • Eggs
  • Bread
  • Hummus
HTML
<ul>
  <li>Milk</li>
  <li>Eggs</li>
  <li>Bread</li>
  <li>Hummus</li>
</ul>