HTML Lists

Introduction Of HTML List

In HTML there are three types of list ordered, unorered and definition lists. With the name itself you might be understanding that what is list. Yes you are thinking in the right way.   It is the list of anything e.g. list of items, list of books.   Hope now you are clear about the …

Introduction Of HTML List Read More »

Unordered Lists

An unordered list is a list of items. The list items are marked with bullets (typically small black circles), it does not have numbers in the list. An unordered list starts with the <ul> tag and end with </ul>. list items are defined in between <ul> &</ul>. Each list item is surrounded by the <li> …

Unordered Lists Read More »

Ordered List

Ordered List In  HTML Ordered List An ordered list is also a list of items. The list items are marked with numbers not with the bullets.   An ordered list starts with the <ol> tag and end with </ol>. list items are defined in between <ol> & </ol>. Each list item is surrounded by the …

Ordered List Read More »

Definition List

A definition list is not a list of items. This is a list of terms and explanation of the terms. A definition liststarts with the <dl> tag. Each definition-list term starts with the <dt> tag. Each definition-list definition starts with the <dd> tag. Inside a definition–list definition (the <dd> tag) you can put paragraphs, line …

Definition List Read More »

Example For HTML List

Now lets do some Practical.   Just write/copy this example on any text editor new file and save the file and open in the browser and see how it looks.   Example: <html> <head> <title> Lists </title> </head> <body> Unordered List <ul> <li>Text Book</li> <li>Note Book</li> </ul> Ordered List with numbers <ol> <li>Text Book</li> <li>Note …

Example For HTML List Read More »

Scroll to Top