Html Lists — Free Html Tutorial
Learn Html Lists in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
TL;DR: Learn Html Lists in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated
Html Lists in Html
HTML has three types of lists: unordered lists (<ul>) show bullet points, ordered lists (<ol>) show numbered items, and description lists (<dl>) show term-definition pairs.
Each list item uses the <li> tag. Lists can be nested (list inside a list) to create sub-items — great for menus, outlines, and hierarchies.
Lists are one of the most used HTML elements for navigation menus, feature lists, FAQs, and structured content.
Html Lists — Syntax
<ul><li>Bullet item</li></ul> <!-- unordered --> <ol><li>Numbered item</li></ol> <!-- ordered --> <dl> <dt>Term</dt><dd>Definition</dd> </dl>
Learn Html Lists step by step with Syllab's free interactive Html tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Html course →