ORDERED LISTS AND MAIN TAGS   Go back to the Main Menu 

Each page needs the following tags:

  1. HTML
  2. HEAD
  3. TITLE
  4. BODY
Other things to remember include:
  1. <BR> will break a line and does not need an end tag.
  2. <OL> will create an ordered list. <LI> is needed for each entry.
  3. By convention tags are capitalized.
  4. Cut and paste helps with creating pages.

The Code for this page is as follows:

<HTML>
<HEAD>
<TITLE>Exercise 2 in HTML</TITLE>
</HEAD>
<BODY BGCOLOR="#ffffff">Each page needs the following tags.
<OL>
<LI>HTML
<LI>HEAD
<LI>TITLE
<LI>BODY
</OL>

Other things to remember include:
<OL>
<LI><BR> will break a line and does not need an end tag.
<LI><OL> will create an ordered list. <LI> is needed for each entry.
<LI>By convention tags are capitalized.
<LI>Cut and paste helps with creating pages.
</OL>
</BODY>
</HTML>

 Go back to the Top   Go back to the Main Menu