HTML Basics

PreviousNext

Basic Tags

EXAMPLE C - Unformatted HTML source

<UL>

<LI>An Unordered

<LI>List is like

<LI>a bulleted list

</UL>

<OL>

<LI>An Ordered

<LI>List is a

<LI>numbered list

</OL>

<DL>

<DT>Subject1<DD>Some interesting text about subject1.

<DT>Subject2<DD>Some boring information about subject2.

<DT>Subject3<DD>Subject3 is the most exciting subject of all!.

</DL>

Let's take a look at the formatted source

PreviousNext

Agenda

HTM100