|
|
This page will explain the usage of an Font tag. For explanation purposes, the lines will be color coded for easier explanation. The explanation of each line will be below it showing what is required in each line, and what can be modified to suit your own personal needs.
For future reference . the little dot you see is 1 pixel by 1 pixel : )
<font size="3" face="Arial, Verdana" color="#0000FF">Text Goes Here</font>
Now lets see what each part of the tag above does, and how it can be modified to suit your needs.
<font> </font> **Required** This tells the browser that it will be changing the preset font.
size="3" **Not Required** This will instruct the browser to change the font to this size.
face="Arial, Verdana" **Not Required** This will tell the browser what Font you would like the text to appear in. There are two fonts listed here. The first is the preferred font, and the second is a "fallback" in case the viewer of your site doesn't have the preferred font installed on their system.
color="#0000FF" **Not Required** This will tell the browser what color to display the font in. If you are unfamiliar with Hexadecimal colors (which is what I have shown here) browsers will also understand basic color commands such as red, blue, yellow, green, etc...
Text Goes Here **Required** This is the text you would like to have displayed on the webpage.
|
Different Font Sizes
This is size 7 font
This is size 6 font
This is size 5 font
This is size 4 font
This is size 3 font
This is size 2 font
This is size 1 font
|