~~~Here we'll go over "font" for HTML. 'Font' is really just the letters and words you write. With the help of HTML you can manipualte font size, color, and style

Here is your basic Font code

<font size="4"color="gray">Your Words</font>

~~~You can change the size of your font by changing the number in the font 'size'
1

<font size="1">1</font>
2

<font size="2">2</font>
3

<font size="3">3</font>
4

<font size="4">4</font>
5

<font size="5">5</font>
6

<font size="6">6</font>

7
<font size="7">7</font>

~~~You can change the 'font' color by changing the color name in the above code. You can use the word name, or the coresponding 'Hex code'. I wont get into hex codes right now. But, if you go to my Color & Text page, you can easily understand what it is I'm speaking of when I mentioned 'Hex code'. For now, we'l just use color names like 'blue' or 'red'.

Here, again, is the font code

<font size="4"color="gray">Your Words</font>

But, lets change the color to lightblue

<font size="4"color="lightblue">Your Words</font>

Your font will express itself as this.

Your Words

~~~Now, lets go to the last step in this tutorial. Font 'effect'. There are a few different types of effects that will give your font a diffrent character. I'll show you how to place them in font, then, give you an example of how each looks.

Here is our font code with an effect added

<font size="6"color="black"effect="emboss">Your Words</font>

Your Words

<font size="6"color="gray"effect="shadow">Your Words</font>

Your Words


~~~We can also change the style of how a font is written by adding other tags.

<font size="6"color="gray"><i>Italic</i></font>

Italic

<font size="6"color="gray"><u>Underline</u></font>

Underline

<font size="6"color="gray"><b>Bold</b></font>

Bold