HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress
HTML Tutorials

Overview

There are three different types of HTML lists: ordered lists, unordered lists, and definition lists.

TagList TypeDescription
<ol>Ordered ListThis will list items using numbers
<ul>Unordered ListThis will list items using bullets
<dl>Definition ListThis lists the items similar to how they are arranged in a dictionary (term > definition, term > definition, etc.)

Ordered Lists

Ordered lists use the ol tag and the list items within use the li tag. The list items will be marked with numbers by default (1, 2, 3, etc.).

				
					<ol>
    <li>Maserati</li>
    <li>Alfa Romeo</li>
    <li>Ferrari</li>
</ol>
				
			
  1. Maserati
  2. Alfa Romeo
  3. Ferrari

These are the number types that can be used in an ordered list.

Bullet TypeDescription
type=”1″The list items will be numbered with numbers (default)
type=”A”The list items will be numbered with uppercase letters
type=”a”The list items will be numbered with lowercase letters
type=”I”The list items will be numbered with uppercase roman numerals
type=”i”The list items will be numbered with lowercase roman numerals

The following is an example of changing the number type.

				
					<ol type="I">
    <li>Maserati</li>
    <li>Alfa Romeo</li>
    <li>Ferrari</li>
</ol>
				
			

You can also set the starting number of the list.

				
					<ol type="1" start="20">
    <li>Maserati</li>
    <li>Alfa Romeo</li>
    <li>Ferrari</li>
</ol>
				
			

Unordered Lists

Unordered lists use the ul tag and the list items within use the li tag. The list items will be marked with a small black dot (disc) by default.

				
					<ul>
    <li>Maserati</li>
    <li>Alfa Romeo</li>
    <li>Ferrari</li>
</ul>
				
			
  • Maserati
  • Alfa Romeo
  • Ferrari

These are the bullet types that can be used in an unordered list.

Bullet TypeDescription
discSets the list item marker to a dot (default)
circleSets the list item marker to a circle
squareSets the list item marker to a square
noneThe list items will not have a bullet of any kind

The following is an example of changing the bullet type.

				
					<ul type="square">
    <li>Maserati</li>
    <li>Alfa Romeo</li>
    <li>Ferrari</li>
</ul>
				
			

Definition Lists

Definition lists use the dl tag and the list items (definition terms) within use the dt tag. The dd tag is the definition description of the related term.

				
					<dl>
    <dt>Maserati</dt>
        <dd>- Italian Luxury Sports Car</dd>
    <dt>Ferrari</dt>
        <dd>- Italian Exotic Sports Car</dd>
</dl>
				
			

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.