Home
Email the webmaster
Legal stuff
NEXT LESSON >>>

 
Defining Font/s
Fonts have many types; for example, 'COMIC SANS MS', 'ARIAL', 'IMPACT' etc. They also have different sizes, and may have different colors. Hence, to declare a font type, you must specify exactly what you are defining.
<FONT FACE="..."> defines the font, in this case, is 'COMIC SANS MS'.
<FONT SIZE="..."> defines the font size, in this case, is '3'
<FONT COLOR="..."> defines the font color, which in this case, is 'BLACK' (or '#000000')
(Remember that not all computers have the unique fonts that you are using. Usually, webmasters use only fonts which are found in the FONTS directory (Control Panel) before any other programs are installed. Examples of such fonts are COMIC SANS MS, TIMES NEW ROMAN and ARIAL. The default font size is 3, you may increase / decrease at your own discreation. Another method is to use <FONT SIZE="(positive or negative)(number)">, where you can select "-" or "+" in the first bracket, and the number to do so in the second bracket. The limits are +2 and -2.
Activity
<HTML>  
<HEAD><TITLE>My homepage!</TITLE>  
</HEAD>  
<BODY BGCOLOR="#000000" TEXT="#FFFFFF" LINK="#666666" VLINK="#555555" ALINK="#444444">  
<B><U><H1>Hi, and welcome!</H1></U></B>   
<BR>  
<I>Hi and welcome to my cosy little corner of the net.</I> In my webpage, i will be talking about myself, what i like to do, as well as linking to my favorite sites on the internet. Remember, sign the guestbook before you leave!    
<BR></BR>  
<FONT SIZE="+1" FACE="COMIC SANS MS" COLOR="LIME">Thanks for comming, and have a pleasant <I>'surf'<I>.</FONT>  
<P>   
<I><FONT SIZE="-1">Direct your comments, complaints or comedy routines to [email protected]</FONT></I>   
</BODY>  
</HTML>