| When creating a
web-site the use of font is very important as it is the soul
presenter of your information to the public. the font tag
<font> has three main attributes which are as follows :
Face :- This attributes change the tag-text
font typeface to the specified face a font-face could have the value
Arial, courier or impact. for example :
<font face="Arial" >welcome</font>
Size :- The size attributes is responsible
for the changes of the tag-text font size to the specified size.
Color :- Specify the color for the tag-text
font color, take not that the color is spell using the American
English and not the British English which spell it as colour.
example, type the following in a Notepad and view the result in a
web browser.
<html>
<head>
<title>Working with colors</title>
</head>
<body>
<font face="Courier" color="red" size=7>
<P>Working with color is fun</P>
</font>
</body>
</html>
The output should look like
this.
N.B :- HTML is not case sensitive, so
either you use the tag <font> or <FONT> you arrive at
the same result. |