|

You can change the size of words to cause them to stand apart from other text. There are seven font sizes, 1 being the smallest, and 7 being the largest. The default font size is 3. There are two ways of specifying font size: absolute and relative.
Absolute
Size two text.
<FONT SIZE=2>Size two text.</FONT>
Size five text.
<FONT SIZE=5>Size five text.</FONT>
Relative
Size two text.
<FONT SIZE="-1">Size two text.</FONT>
Size five text.
<FONT SIZE="+2">Size five text.</FONT>

Trying to read text in the default font isn't always very easy. Luckily, you may specify a different font for the text. But, the visitor must have that font on his/her computer.
<FONT FACE="Arial, Helvetica">This text should be in either "Arial" or "Helvetica".</FONT>
If you have the font called "Arial" on your system, then the above text should be in Arial. If you don't have Arial, the browser then looks to see if you have the font called "Helvetica", which is pretty similar to Arial.
Notice that the first letter in the name of the font is capitalized. Capitalization is very important on systems other than the PC. On a UNIX machine, "Helvetica" will result in Helvetica, but "helvetica" will result in the default font.
Two more commonly-used fonts are Comic Sans MS and Verdana. If you don't see a different font for those names (look closely at Verdana), then you must not have those fonts on your system (which most likely means you aren't on a PC, because those are Microsoft fonts).
<FONT FACE="Arial, Helvetica" COLOR="#FF0000" SIZE="+1">That's it for the font tag!</FONT>
Last Modified: Friday, 17-Jul-98 18:28:22 PDT Page URL: http://www.oocities.org/SiliconValley/Vista/2823/htmlchp5.html
|