1 / 5

CHAPTER 4 LIST IN WEB PAGE

CHAPTER 4 LIST IN WEB PAGE. List in web page. Used to present the information. 3 types on list: Unordered list Nested Ordered list Tags that we use to insert list in web pages are: <UL> </UL> - unordered list <LI> </LI> - list item -(insert between <OL> and <UL> tag)

halla-morin
Download Presentation

CHAPTER 4 LIST IN WEB PAGE

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CHAPTER 4LIST IN WEB PAGE

  2. List in web page • Used to present the information. • 3 types on list: • Unordered list • Nested • Ordered list • Tags that we use to insert list in web pages are: • <UL> </UL> - unordered list • <LI> </LI> - list item -(insert between <OL> and <UL> tag) • <OL> </OL> - ordered list

  3. Unordered lists • Creates a list in which every line begin with a BULLET MARKS. • All entries in a unordered list must be enclosed within <UL>……..</UL> tags. • THREE bullet type: •  solid round bullet •  square bullet •  empty round bullet • Can insert <LI> tags, which creates a line brake and insert a bullet mark at the beginning of the line. • Syntax: <UL> <LI> TEXT</LI> <LI> TEXT </LI> </UL>

  4. Ordered lists • Used <OL>..</OL> tags. • Every item in an ordered list begin with a sequence number. • We can change the sequence TYPE by insert an ATTRIBUTE TYPE in the <OL> opening tag. • Example: <OL TYPE=“ 1”> • Can insert the TYPE ATTRIBUTE into an individual <LI> tag if we want to change the list entry only. • Example: <LI TYPE= “a”>

  5. Nested lists • Used when we want to display the information in outline form. • Used <UL> AND < LI> tags. • Its have more than one <UL></UL>, <OL> </OL> and <LI> </LI> tags in one page. • When we insert the new list, the browser will indent the list one level and will change the bullet type of reflect the nesting.

More Related