spicing up your webpages

Okay, you can just leave it with the basic layout. You know, the boring times new roman font and plain white background. But for those who want to add color, read this guide. :P

learning html

HTML stands for Hyper Text Mark-Up Language it's a type of computer language that can be used to make your text bold, italic, underlined, striked and much more.
With HTML, we use these tags: < and >.

How do I make my text bold? Use this code: <b>Your Bold Text Here</b>

How do I make my text italic? Use this code: <i>Your Italic Text Here</i>

How do I make my text underlined? Use this code: <u>Your Underlined Text Here</u>

How do I make my text centered? Use this code: <p align="center">text here</p>
Note: Change 'center' to right or left.

How do I change the background color? Use this code: <body bgcolor="blue">
Note: Change 'blue' to your color.

How do I add a background image? Use this code: <body background="background.gif">
Note: Change 'background.gif' to your background image url.

How do I change my font color? <font color="black">
Note: Change 'black' to your color.

How do I change my font face? <font face="comic sans ms">
Note: Change 'Comic Sans MS' to your font. (Has to be installed to your computer)

How do I change my font size? Use this code: <font size="5">
Note: Change '5' to your number.

© Stainedink.com 2007 - 2008