Basics of HTML Text Editing
Create your own unique text!
a) Font Face
Choose the Font Face you want for your text
<font face="Font Face">Text Here</font>
Example: <font face="Verdana">Your Text</font> = Your Text
b) Bold, Underline, Italics, Strike Through - How would you like your text to be?
Bold = <b>Your Text</b>
Underline = <u>Your Text</u>
Italics = <i>Your Text</i>
Strike Through = <s>Your Text</s>
c) Colored Text
Choose the color you want for your text!
Your color = <font color="Your color">Your text in color</font>
Example: Pink = <font color="Pink">Your text Pink</font>
d) Font Size
Do you want a smaller or bigger text?
<font size="Size Here">Your Text</font>
Example: <font size="2">Your Text</font> = Your Text
e) New line/paragraph
For a new line add <br> between your text or pictures.
Example: first text<br>second text
It will turn into:
first text
second text
For a new paragraph add <p> between your text/pictures.
Example: first text<p>second text
I will be:
first text
second text
f) Align text wherever you want on the page
<div align="left">Your Text</div>
<div align="center">Your Text</div>
<div align="right">Your Text</div>
g) Moving text