Lesson 8: Making Lists


Return to Lesson 7

Continue on with Lesson 9


To make a list on the web, you must first tell the computer which kind of list you want to use. <OL>...</OL> tells the computer you want a numbered list. <LI>...</LI> tells the computer you want a list with bullets instead of numbers. These first two tags must be used in pairs. Then, you have to tell the computer where you want each line of the list to start. You do that by placing <LI> at the beginning of each line. <LI> is not used in pairs. Assignment 8 A. Type the following HTML document word for word and then check it for accuracy in your browser. <HTML> <HEAD><TITLE>Fairy Tales</TITLE></HEAD> <BODY> <H1 ALIGN=CENTER>Favorite Fairy Tales</H1> <HR> <OL> <LI>Jack and the Beanstalk <LI>The Princess and the Pea <LI>The Little Mermaid <LI>The Frog Prince </OL> </BODY> </HTML> B. Now change the Listing tag from <OL> to <UL> and see what happens. end of lesson