HTM18


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     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.


..Back to the top..



OUTPUT:


HTM18. Visual Guide

Types of Colors

Classroom Officers Part 1

Classroom Officers Part 2



..Back to the top..



SOURCE CODE:



<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>


..Back to the top..