Home Tutorials Exercises About Us
�There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.� (c) Albert Einstein


�Sometimes the questions are complicated and the answers are simple.� (c) Dr. Seuss


�Today you are You, that is truer than true. There is no one alive who is Youer than You.� (c) Dr. Seuss


�Finish each day and be done with it. You have done what you could. Some blunders and absurdities no doubt crept in; forget them as soon as you can. Tomorrow is a new day. You shall begin it serenely and with too high a spirit to be encumbered with your old nonsense.� (c) Ralph Waldo Emerson


�I'm the one that's got to die when it's time for me to die, so let me live my life the way I want to.� (c) Jimi Hendrix


�Just when you think it can't get any worse, it can. And just when you think it can't get any better, it can.� (c) Nicholas Sparks

Lists

HTML Unordered Lists

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.

The list items are marked with bullets (typically small black circles).

<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>

How the HTML code above looks in a browser:

  • Coffee
  • Milk

HTML Ordered Lists

An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.

The list items are marked with numbers.

<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

How the HTML code above looks in a browser:

  1. Coffee
  2. Milk

HTML Description Lists

A description list is a list of terms/names, with a description of each term/name.

The <dl> tag defines a description list.

The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name):

<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>

How the HTML code above looks in a browser:

Coffee
- black hot drink
Milk
- white cold drink

Basic Notes - Useful Tips

Tip: Inside a list item you can put text, line breaks, images, links, other lists, etc.


Related Pages