Tutorials Web Hosting Web Design Graphics
  Photoshop
HTML

Dedicated
Virtual
Affiliate Programs
Building Traffic

Animation
Clip Art


 

HTML Tutorial

Page #1 HTML 101 - Tags, HTML, Title, Body, Saving
Page #2 Font Basics - Size, Color , Combining Tages
Page #3 Tables

HTML Tutorial Page #2

Font - Bold

type this to bold the font size
<b>Bold my text</b>

Font - Size
[Back To The Top]

type this to change the font size
<font size ="Number 1 though 7">Text you want to change</font>

<font size ="1"> Looks like this.</font>
<font size ="2"> Looks like this.</font>
<font size ="3"> Looks like this.</font>
<font size ="4"> Looks like this.</font>
<font size ="5"> Looks like this.</font>
<font size ="6"> Looks like this.</font>
<font size ="7"> Looks like this.</font>

Font - Color
[Back To The Top]

type this to change the font color
<font color ="common color name">Text you want to color</font>

<font color ="red">Colored Text!</font>
<font color ="blue">Colored Text!</font>
<font color ="green">Colored Text!</font>

But if you want more control over the colors you can use you'll have to use "hexdecimal" values which consist of a pound symbol and 6 numbers or letters.

<font color="#ffffff">For White Text</font>
<font color="#000000">For Black Text</font>
<font color="#990000">For Darker Red Text</font>

You can find the code for the color you are looking here http://www.colorschemer.com/online.html

Font - Combining Tags
[Back To The Top]

If you want to make your text red and in size 4 you would do it like this.
<font color="#990000" size="4">My Text</font>

If you also want to make the text bold you would do it like this

<font color="#990000" size="4"><b>My Text</b></font>