Breaking Spaces
- To create a new line of text put <br> in between your text or images. This will create the effect of an enter using the enter key.
Example: Hi! <br> I Like your work!
Will look like this:
Hi!
I Linke your work
You can also use paragraph tags <p> to create the effect of a new paragraph (two spaces).
Example: Hi! <p> I Like your work!
Will look like this:
Hi!
I Like your work!
Bold, Underline, Italics, Strike Through
Bold = <b>Your text Bolded</b>
Underline = <u>Your text Underlined</u>
Italics = <i>Your text Italics</i>
Strike Through = <s>Your text Strike Through</s>
Adding Colors
Make your text colorful!
Red = <font color="red">Your text Red</font>
Green = <font color="green">Your text Green</font>
Blue = <font color="blue">Your text Blue</font>
Other Color = <font color="COLOR YOU WANT HERE">Text You Want Colorized Here</font>
Modifying Font Size
Make your text grow!
<font size="1">Text Here</font> = Text Here
<font size="2">Text Here</font> = Text Here
<font size="3">Text Here</font> = Text Here
<font size="4">Text Here</font> = Text Here
<font size="5">Text Here</font> = Text Here
Want to go even bigger? <font size="Size Here">Text Here</font>
Just replace Size Here with any number you want.
Modifying Font Face
- Change your Font Face
<font face="Arial">Text Here</font> = Text Here
<font face="Times New Roman">Text Here</font> = Text Here
<font face="Courier New">Text Here</font> = Text Here
<font face="Georgia">Text Here</font> = Text Here
<font face="Verdana">Text Here</font> = Text Here
<font face="Tahoma">Text Here</font> = Text Here
Want to use another font face not listed here? <font face="Font Face">Text Here</font>
Replace Font Face with the font face name of your choice.
Aligning Text
.
<div align="left">Text Here</div>
<div align="center">Text Here</div>
<div align="right">Text Here</div>