DESCRIPTION OUTPUT SOURCE CODE |
Lists allow Web authors to organize and indent text in Web pages. Lists could be used to describe components of a product, steps of a procedure, tasks of a plan, and organizational/hierarchical structures. HTML supports three types of lists: unordered, ordered, and definition. The difference between these types comes in their rendering.
<HTML> <HEAD><TITLE>HTM18. Visual Guide</TITLE></HEAD> <BODY> <H3>Types of Colors</H3> <UL> <LI>Primary <LI>Secondary <LI>Tertiary </UL> <H3>Classroom Officers Part 1</H3> <UL TYPE = circle> <LI>President <LI>Vice-President <LI>Treasurer </UL> <H3>Classroom Officers Part 2</H3> <UL TYPE = square> <LI>Secretary <LI>Auditor <LI>P.R.O. </UL> </BODY> </HTML> |