Text Codes


Here are some codes to help you jazz up your text on your website, myspace, vampirefreaks or wherever. Where is says ENTER TEXT HERE (or some variation of that) type whatever text you want to have the effect of the code.
* do not contact Tamara for help with any of these codes. Please read the site FAQ to know why.

Line break


one of the most important codes you'll need! you put this simple code at the end of a sentence when you want the next sentence to start on another line. you can repeat this code many times to make your text (or images) go further down on the page.
Code: <BR>



Making text bold

this is normal text. This is bold text
Code: <b> TYPE YOUR TEXT HERE </b>



Underlined text

this is underlined text
Code: <u> YOUR TEXT HERE </u>



Strikethrough

this is strikethrough text
Code: <s> YOUR TEXT HERE </s>



Italic text

This is italic
Code:
<i> YOUR TEXT HERE </i>



Header codes


On my site the headers show up different colors because of my CSS coding. For you it wont change the text color, only the text size.

Header 1

Code: <h1> YOUR TEXT </h1>

Header 2

Code: <h2> YOUR TEXT </h2>

Header 3

Code: <h3> YOUR TEXT </h3>
I'm sure by now you get the pattern. The smaller you want the text, the higher the number behind the H in the code will be. you can do this all the way up to H6. just make sure to change the number at the begining and end of the code if you want to use H4, 5 or 6.

Change font size

Where it says put number here you put a number 1-10. 1 being the smallest, 10 being biggest.
size 1 size 2 size 4 size 6

Code: <font size="put number here"> type text here</font>



Changing text color

Where it says enter color here in the code you must enter a color. there is a scroll box of colors below with names and color previews. if you wanted your text to be the first color in the scroll box (dodgerblue) you'd change the code to <FONT COLOR="dodgerblue"> ENTER TEXT HERE</FONT> simple eh? you can also use hex codes, which is more popular because of the color range, but if you're reading this tutorial then you probably dont know that much about HTML or CSS, and hex codes may confuse you.
Dodgerblue Salmon Blueviolet Turquoise Darkpink Lime Seagreen Pink Royalblue Yellow Goldenrod Coral Burlywood red white black Firebrick Forestgreen Fuchsia Indigo Skyblue Indianred Olive Peru Orchid Plum Springgreen Steelblue Teal Blue Hotpink Cornflowerblue


Code: <FONT COLOR="COLOR HERE"> ENTER TEXT HERE</FONT>



Changing fonts


where it says FONT NAME, replace the text with the font name you'd like. a few popular ones are Arial, impact, and verdana. use google to find more font names.
Code: <font face="FONT NAME"> TEXT HERE </font>



Change font, color and size at once


this is the last 3 codes we went over all put together into one code.
Code: <font face="FONT" size="NUMBER" color="COLORHERE">TEXT HERE</font>



Text w/ background color


looks like this
You just enter a color where it says "enter color". scroll up and check out the box of colors for a few color names.
Code: <span style=background:ENTER COLOR> TEXT HERE </span>