George and Susan Welcome to our HTML help page!
Home | HTML-Index | Basic HTML | HTML Structure
Change Font Face / Change Font Color / Text Basics

Changing The Font Size


Type this:
down
<font size=6>Your Text</font>

And you get the following:
down
Your Text
Using the <FONT> tag with the SIZE attribute lets you change the font size for a section of text on your Auction or Web page.

There are 7 font sizes you can use. The smallest font size is 1 and the largest font size is 7. Keep in mind that the font size you use may not appear the way you expect on some computers, since some users can set their Web browsers to display the font size they prefer.

To change the font size:
  1.   Before the text to be changed, type:
    <font size=?>
    Replace ? with a number from 1 to7. The smallest font size is 1; the largest font size is 7.
  2. Type the text that should be displayed with the given font size.
  3. Type </font>

Example:

Type this:
down
<font size=2>Increasing the size of text makes the text easier to read, while decreasing the size of text allows you to fit more information on a screen.</font>

And you get the following:
down
Increasing the size of text makes the text easier to read, while decreasing the size of text allows you to fit more information on a screen.
Tip:

The FONT tag is also used to change the face (click here) and the color (click here) you can combine all attributes in the same tag e.g.,
Change font Face, Size and Color.
Type this:
down
<font size=4 face="Comic Sans MS" color="#CC00FF">YOUR TEXT</font>

And you get the following:
down
YOUR TEXT



My home page
Back