|
HTML Text Styles Tags
Tags are used to make a direct command
towards a specific group of text.
Bold Text = <b>Bold Text</b>
Underlined Text = <u>Underlined Text</u>
Italic Text = <i>Italic Text</i>
Sub ScriptText = <sub>Sub Script</sub> Text
Striked-Out Text = <strike>Striked-Out Text</strike>
Super ScriptText = <sup>Super Script</sup> Text
Typewriter Text = <tt>Typewriter Text</tt>
All of the above tags can be used in conjunction. For exampleThis HTML Code .....
<tt><strike>typewriter striked out would look like this</strike><tt>
typewriter striked out would look like this
To change the size of your text, use <font size="size number here">. eg: Sized 3 Text = <font size="3">Sized 3 Text</font>
There are 7 font sizes: 1 2 3 4 5 6 7
To change the font of your text, use <font face="font name here">. eg: Georgia = <font face="Georgia">Georgia</font> Names of popular fonts:Arial, Arial black, Book Antiqua, Century Gothic, Courier new, Garamound, Georgia, Impact, Lucida Console, Monotype Corsiva, Small Fonts, Tahoma, Times New Roman, Trebuchet Ms, Verdana.
To change the color of your text, use <font color="#color code here">. eg: Pink Text = <font color="#FF3399">Pink Text</font> You can also use the name of a color, eg: Pink = <font color="pink">Pink</font>
To make your text spaced out or cramped together, eg. Spaced Out (2px) = <font style="letter-spacing:2px">Spaced Out</font> Cramped (-1px) = <font style="letter-spacing:-1px">Cramped Together</font> .
|