Title: Text Size
URL: http://www.activejump.com/c-6.shtml
Email: webmaster@activejump.com
Introduction
Making your text different sizes allows you to create different parts of your page that stand out with bigger or smaller
text. In this step, you will learn how to change the size of your text.
Size Tag
To change the size, you need to put in the size tag which looks like <FONT SIZE="#">. The starting tag
is <FONT SIZE="#"> and the closing tag is </FONT>. The # symbol is replaced by the size of
text you want, which ranges 1 through 7. Here is an example of the size tag.
|
index.html - Notepad |
....<BODY>
<FONT SIZE="3"> Hello World! </FONT>
</BODY>....
|
|
|
My Homepage - Microsoft Internet Explorer |
Hello World!
|
|
Text Sizes
As you may have seen from the example above, the size number in HTML does not relate to the normal font size in a normal
text editor. The font sizes in HTML range from 1 to 7. Here is an example of all the different sizes.
Size 1
Size 2
Size 3
Size 4
Size 5
Size 6
Size 7
|