FONT AND BACKGROUNDS   Go back to the Main Menu 

Apart from text i can add the following:

  1. Color by typing <BGCOLOR="#FFFFFF"> or something similar
  2. Italics, bold or underline with <B>, <I> and <U>
  3. New lines with the paragraph marker <P>
  4. Typewriter text or monospace text. Need to use <TT>
  5. Different font sizes by using <FONT SIZE=6>
Examples are: Something really cool All letters use the same space.

teeny tiny small regular extra medium large real big & yelling!

The Code for this page is as follows:

<HTML>
<HEAD>
<TITLE>Exercise 3 in HTML</TITLE>
</HEAD>
<BODY BGCOLOR="#0066ff">Apart from text i can add the following:
<OL>
<LI>Color by typing <BGCOLOR="#FFFFFF"> or something similar
<LI>Italics, bold or underline with <B>, <I> and <U>
<LI>New lines with the paragraph marker <P>
<LI>Typewriter text or monospace text. Need to use <TT>
<LI>Different font sizes by using <FONT SIZE=6>
</OL>

Examples are:

        <U>Something</U> <I>really</I> <B>cool</B>
            <TT>All letters use the same space.</TT>

<P><FONT SIZE=1>teeny tiny</FONT>
<FONT SIZE=2>small</FONT>
<FONT SIZE=3>regular</FONT>
<FONT SIZE=4>extra medium</FONT>
<FONT SIZE=5>large</FONT>
<FONT SIZE=6>real big & </FONT>
<FONT SIZE=7>yelling!</FONT>

</BODY>
</HTML>

 Go back to the Top   Go back to the Main Menu