SlideShare a Scribd company logo
Html list
 You have a list of your telephone list and black list.
 Everyday you have a lot of something to do so you
must have a list for this for this to be in order.
 List are used to group together related pieces
of information so they are clearly associated
with each other and easy to read .
 Lists are good from a structural point of
views as they help create a well-structured,
more accessible , easy-to-maintain
document.
 ORDERED LISTS
 UNORDERED LISTS
 DEFINITION LISTS
It is used to group a set of related items in a
specific order.
An ordered list starts with <ol>tag.
Each list item starts with the <li>tag.
The list items are marked with numbers.
TEST CODE RESULT
<html> 1)COFFEE
<body> 2)MILK
<ol>
<li> COFFEE </li>
<li> MILK </li>
</ol>
</body>
</html>
 It used to group a set of related items in on
particular order.
 An unordered lists starts with the <ul>tag.
 Each list item starts with the <li> tag.
 The lists items are marked with bullets .
TEST CODE RESULT
<html> $) COFFEE
<body> $) MILK
<ul>
<li>COFFEE</li>
<li> MILK </li>
</ul>
</body>
</html>
 A definition list is a list of items , with a
description of each item.
 The <dl>tag defines a definition list .
 The <dl>tag is used in conjunction with
<dt>(defines the item in the list) and
<dd>(describes the item in the list).
TEST CODE RESULT
<html> Coffee
<body> Black hot drink
<dl> Milk
<dt>Coffee</dt> White cold drink
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
</body>
</html>

More Related Content

PPTX
Html list.
PPTX
PPTX
Ordered lists
PPTX
Excel for home use
PDF
v3-html-list-210321161325.pdf
PDF
Chapttttttttttttttttttttttter_5.pptx.pdf
PDF
JoddddComputerscienceChaptter_5.pptx.pdf
PPTX
PREPARING A LIST THAT WE USE USING HTML .pptx
Html list.
Ordered lists
Excel for home use
v3-html-list-210321161325.pdf
Chapttttttttttttttttttttttter_5.pptx.pdf
JoddddComputerscienceChaptter_5.pptx.pdf
PREPARING A LIST THAT WE USE USING HTML .pptx

Similar to Html list (11)

PPTX
html-list-type-description-with-examples
DOCX
Comp 3
PPT
HTML List, Nesting List & Hyperlinks.ppt
PPTX
Use of Lists and Tables in HTML
PPSX
computer language - html lists
PPTX
Html lists
PDF
Unit 2.5
PPTX
HTML LIST
PPTX
Listing in web development and uses
PPTX
Html web designing using lists
PPTX
HTML Lists HTML FormsHTML FormsHTML For.pptx
html-list-type-description-with-examples
Comp 3
HTML List, Nesting List & Hyperlinks.ppt
Use of Lists and Tables in HTML
computer language - html lists
Html lists
Unit 2.5
HTML LIST
Listing in web development and uses
Html web designing using lists
HTML Lists HTML FormsHTML FormsHTML For.pptx
Ad

Recently uploaded (20)

PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PDF
Trump Administration's workforce development strategy
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
Computing-Curriculum for Schools in Ghana
PDF
1_English_Language_Set_2.pdf probationary
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PPTX
UNIT III MENTAL HEALTH NURSING ASSESSMENT
PPTX
Unit 4 Skeletal System.ppt.pptxopresentatiom
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PPTX
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Classroom Observation Tools for Teachers
PDF
A systematic review of self-coping strategies used by university students to ...
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PPTX
Digestion and Absorption of Carbohydrates, Proteina and Fats
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
A powerpoint presentation on the Revised K-10 Science Shaping Paper
Trump Administration's workforce development strategy
Supply Chain Operations Speaking Notes -ICLT Program
Chinmaya Tiranga quiz Grand Finale.pdf
Computing-Curriculum for Schools in Ghana
1_English_Language_Set_2.pdf probationary
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
UNIT III MENTAL HEALTH NURSING ASSESSMENT
Unit 4 Skeletal System.ppt.pptxopresentatiom
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
Final Presentation General Medicine 03-08-2024.pptx
Classroom Observation Tools for Teachers
A systematic review of self-coping strategies used by university students to ...
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
Digestion and Absorption of Carbohydrates, Proteina and Fats
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
Ad

Html list

  • 2.  You have a list of your telephone list and black list.  Everyday you have a lot of something to do so you must have a list for this for this to be in order.
  • 3.  List are used to group together related pieces of information so they are clearly associated with each other and easy to read .  Lists are good from a structural point of views as they help create a well-structured, more accessible , easy-to-maintain document.
  • 4.  ORDERED LISTS  UNORDERED LISTS  DEFINITION LISTS
  • 5. It is used to group a set of related items in a specific order. An ordered list starts with <ol>tag. Each list item starts with the <li>tag. The list items are marked with numbers.
  • 6. TEST CODE RESULT <html> 1)COFFEE <body> 2)MILK <ol> <li> COFFEE </li> <li> MILK </li> </ol> </body> </html>
  • 7.  It used to group a set of related items in on particular order.  An unordered lists starts with the <ul>tag.  Each list item starts with the <li> tag.  The lists items are marked with bullets .
  • 8. TEST CODE RESULT <html> $) COFFEE <body> $) MILK <ul> <li>COFFEE</li> <li> MILK </li> </ul> </body> </html>
  • 9.  A definition list is a list of items , with a description of each item.  The <dl>tag defines a definition list .  The <dl>tag is used in conjunction with <dt>(defines the item in the list) and <dd>(describes the item in the list).
  • 10. TEST CODE RESULT <html> Coffee <body> Black hot drink <dl> Milk <dt>Coffee</dt> White cold drink <dd>Black hot drink</dd> <dt>Milk</dt> <dd>White cold drink</dd> </dl> </body> </html>