|
What it is...
Font faces=
color="#ffffff" means WHITE
color="#000000" is BLACK
(the number 0 not the letter)
Open font = <font>
Close font = </font>
|
Verdana
<font face="Verdana" color="#ffffff">I'm a cool dud... I mean dude!</font>
and it looks like this:
I'm a cool dud... I mean dude!
Times
<font face="Times" color="#ffffff">I'm a cool dud... I mean dude!</font>
and it looks like this...
I'm a cool dud... I mean dude!
|
|
Many pages will offer a variety of fonts like
Verdana, Arial, Helvetica
so if a computer does not have one font it will
read and use the next font in line.
|
<font face="Verdana, Arial, Helvetica" color="#ffffff">I'm a cool dud... I mean dude!</font>
and it looks like this...
I'm a cool dud... I mean dude!
|
|
Bold Font
<b>text</b>
|
<font face="Verdana" color="#ffffff"><b>I'm a cool dud... I mean dude!</b></font>
and it looks like this:
I'm a cool dud... I mean dude!
|
|
Italics
<i>text</i>
|
<font face="Verdana" color="#ffffff"><i>I'm a cool dud... I mean dude!</i></font>
and it looks like this:
I'm a cool dud... I mean dude!
|
|
Bold and Italics
<b><i>text</i></b>
|
<font face="Verdana" color="#ffffff"><b><i>I'm a cool dud... I mean dude!</i></b></font>
and it looks like this:
I'm a cool dud... I mean dude!
|
|
Size and Color
are placed in the Font code.
You can use any color by name or use the color codes in webmasters of this site.
If the color codes do not match the color you picked you must use the other color codes, html or css depending on the
style of your page.
Size ranges from 1 to 7.
|
<font face="Verdana" size="1" color="Yellow" ><b><i>I'm a cool dud... I mean
dude!</i></b></font>
and it looks like this:
I'm a cool dud... I mean dude!
<font face="Verdana" size="5" color="Orange" ><b><i>I'm a cool dud...
I mean dude!</i></b></font>
and it looks like this:
I'm a cool dud... I mean dude!
|
|
Marquee
Moving Text
<marquee>text</marquee>
|
<font face="Verdana" size="6" color="#b2b2b2" ><marquee><i>I'm a cool dud...
I mean dude!</i></marquee></font>
and it looks like this:
|
|
Marquee Text
Faster Baby!
<marquee scrollamount="30">text</marquee>
Try different numbers to suit.
|
<font face="Verdana" size="6" color="#b2b2b2" ><marquee scrollamount="10"><i>I'm
a cool dud... I mean dude!</i></marquee></font>
and it looks like this:
|
|
Marquee Text
Other Direction
<marquee direction="right">text</marquee>
|
<font face="Verdana" size="6" color="#000099" ><marquee direction="right"><i>I'm
a cool dud... I mean dude!</i></marquee></font>
and it looks like this:
|
|
Blinking Text
<blink>text</blink>
|
<font face="Verdana" color="#ffffff" size="4">I'm a c<blink>oo</blink>l
dud... I mean <blink>dude</blink></font><font color="red">!!!</font>
and it looks like this:
I'm a cl dud... I mean !!!
|
|
Add a Line for Spacing with <hr>
|
<hr>
and it looks like:
|