FONT AND BACKGROUNDS | Go back to the Main Menu  |
Apart from text i can add the following:
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  |