← All tutorials

GoCareerGo Tutorials

HTML Tutorial

Tags, attributes, HTML5 APIs and semantic markup — the web's foundation.

HTML Lists

HTML supports ordered, unordered and description lists for grouping related items.

<ul>
  <li>Coffee</li>
  <li>Tea</li>
</ul>

<ol>
  <li>First step</li>
  <li>Second step</li>
</ol>

<dl>
  <dt>HTML</dt>
  <dd>Markup language for web structure</dd>
</dl>