Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views1 page

HTML Lists Day 6

The document outlines the three types of HTML lists: ordered lists (<ol>), unordered lists (<ul>), and definition lists (<dl>). It explains how to represent items within these lists using <li> for ordered and unordered lists, and <dt> and <dd> for definition lists. Additionally, it mentions the task of creating a webpage with a description list for web development technologies and the concept of nested lists.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

HTML Lists Day 6

The document outlines the three types of HTML lists: ordered lists (<ol>), unordered lists (<ul>), and definition lists (<dl>). It explains how to represent items within these lists using <li> for ordered and unordered lists, and <dt> and <dd> for definition lists. Additionally, it mentions the task of creating a webpage with a description list for web development technologies and the concept of nested lists.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

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.

You might also like