Formatting Fonts

Emphasize Text

Bold text <b>Bold text</b>
Italic text <i>Italic text</i>
Underlined text <Underlined text>
Subscript <sub>Subscript</sub>
Superscript <sup>Superscript</sup>

Changing Fonts

Californian FB
Arial
Snap ITC
Verdana
Jokerman
Kristen ITC
Comic Sans
<font face="Font name, alternative font">Text here

Changing Font Size

123 4567 <font size="Number 1-7"> Text here

Changing Font Colors

Black
Yellow
Purple
#DDDDDD
#CCCCFF
<font color="name or hex code here"> To get some hex codes, you can visit our hex color chart.

Creating Ordered Lists

    Ordered list
  1. One
  2. Two
  3. Three
  4. You get the idea...
<ol>
<li> List item one
<li> List item two
<li> List item three
</ol>
You can also put type="***" in the <ol> tag, replacing *** with a number style. The styles are A, a, I, i, and 1.

Creating Unordered Lists

  • Item one
  • Item two
  • Item three
<ul>
<li> List item one
<li> List item two
<li> List item three
</ul>
To change the bullet types, you can type type="***" in the <ul> or <li> tag, replacing *** with either "circle", "disc", or "square".

Putting it Together!

Comic Sans!
Lucida Handwriting
Impact
<font face="Comic Sans" color="#669966" size="3">Comic Sans!</font>
<font face="Lucida Handwriting" color="silver" size="4">Lucida Handwriting</font>
<font face="Impact" color="#996699" size="2">Impact</font>