HTML Course

 

Page 3 : Font Commands

  • Font Effects
  • Here are some tags to change the way the default text will look on your Web Page. The tags can be used alone for a single effect. Or can be used together for a different effect. These tags are always used in pairs.

    Example:

    Using Bold, Underline And Italics Together:

    <FONT SIZE="5" COLOR="darkgreen">
    <b><i><u>My Web Page</u></i></b>
    </FONT>

    Result:

    My Web Page

    Here are 16 common font effects.

Markup
Description
Reference

<b> and </b>
Bold
HTML 2.0 MSNTV

<i> and </i>
Italics
HTML 2.0 MSNTV

<tt> and </tt>
Typewriter
HTML 2.0 MSNTV

<u> and </u>
Underline
HTML 2.0 MSNTV

<sub> and </sub>
Subscript
HTML 2.0 MSNTV

<sup> and </sup>
Superscript
HTML 2.0 MSNTV

<blink> and </blink>
Blink
HTML 2.0 MSNTV

<big> and </big>
Big
HTML 2.0 MSNTV

<small> and </small>
Small
HTML 2.0 MSNTV

<strike> and </strike>
Strike
HTML 2.0 MSNTV

<strong>and</strong>
Strong
HTML 2.0 MSNTV

<marquee> and</marquee>
Marquee
HTML 2.0 MSNTV

<blockquote> and</blockquote>
Will Indent A Paragraph After The First Line
HTML 2.0 MSNTV

<pre> and </pre>
Encloses Blocks Of Text To Be Shown Verbatim
HTML 2.0 MSNTV

<nobr>
Prevents Text Breaks Or Line Wraps
Netscape