HTML Lists:
===========
Types of Lists:
i) Ordered List
ii) Unordered List
iii) Definition List
Unordered List:
===============
It is represented by <ul>
Items which comes under the list are represented by <li>
Ordered List:
==============
It is represented by <ol>
Items which comes under the list are represented by <li>
Definition List:
================
It is represented by <dl>
Items inside the list is represented by <dt> - Definition term
The Explanation of dt terms are given under the <dd> - Definition Description.
The text under the <dd> will be intented to the right of the webpage.
Task:
----
Create a WebPage Giving the Description list, where the Description terms
represents the Web Developing Technologies and the Explanation under the <dd> tags.
Nested Lists:
============
*Example of Flipkart application
* One <ul> or <ol> will be present inside another <ul> and <ol> tags.