All You Can Do With: Font style elements: TT, I, B, BIG, SMALL, STRIKE, S, and U

W3 Org on Font style elements: the TT, I, B, BIG, SMALL, STRIKE, S, and U elements
Not showing in this AYCD page.
  1. tabindex is available to control the tab order.(tabindex="5" {index order number}).
  2. alt - not relavent
  3. JavaScript
    • onclick
    • ondblclick
    • onmousedown
    • onmouseup
    • onmouseover
    • onmousemove
    • onmouseout
    • onkeypress
    • onkeydown
    • onkeyup

Basic Basic Example:

bold, italic, bold italic, teletype text, and big and small text.Strike-through and Underlined.


Basic Example:
<P><b>bold</b>,
<i>italic</i>, <b><i>bold italic</i></b>, <tt>teletype text</tt>, and
<big>big</big> and <small>small</small> text.<S>Strike-through</S> and <U>Underlined.</U></p>
tabindex This may not be usefull except with objects you can act upon, like form objects.

bold, italic, bold italic, teletype text, and big and small text.Strike-through and Underlined.


Basic Example:
<P><b tabindex="1">bold</b>,
<i tabindex="2">italic</i>, <b><i>bold italic</i></b>, <tt tabindex="3">teletype text</tt>, and
<big tabindex="4">big</big> and <small tabindex="5">small</small> text.<S tabindex="6">Strike-through</S> and <U tabindex="7">Underlined.</U></p>
accesskey This may not be usefull except with objects you can act upon, like form objects.

bold, italic, bold the TT, I, B, BIG, SMALL, STRIKE, S, and U elements, teletype text, and big and small text.Strike-through and Underlined.


Basic Example:
<P><b accesskey="U">bold</b>,
<i>italic</i>, <b><i>bold italic</i></b>, <tt>teletype text</tt>, and
<big>big</big> and <small>small</small> text.<S>Strike-through</S> and <U>Underlined.</U></p>

This is the CSS for the TT, I, B, BIG, SMALL, STRIKE, S, and U elements.

Background
Image Image Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Image Example:
<TT style="background: url('images/box_aqua_bg.gif');">TT</TT><BR>
<B style="background: url('images/box_aqua_bg.gif');">B</B><BR>
<I style="background: url('images/box_aqua_bg.gif');">Italic</I><BR>
<BIG style="background: url('images/box_aqua_bg.gif');">BIG</BIG><BR>
<SMALL style="background: url('images/box_aqua_bg.gif');">SMALL</SMALL><BR>
<STRIKE style="background: url('images/box_aqua_bg.gif');">STRIKE</STRIKE><BR>
<S style="background: url('images/box_aqua_bg.gif');">S</S><BR>
<U style="background: url('images/box_aqua_bg.gif');">U</U><BR>

Color
background-color background-color Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="background-color: lightyellow;">TT</TT><BR>
<B style="background-color: lightyellow;">B</B><BR>
<I style="background-color: lightyellow;">Italic</I><BR>
<BIG style="background-color: lightyellow;">BIG</BIG><BR>
<SMALL style="background-color: lightyellow;">SMALL</SMALL><BR>
<STRIKE style="background-color: lightyellow;">STRIKE</STRIKE><BR>
<S style="background-color: lightyellow;">S</S><BR>
<U style="background-color: lightyellow;">U</U><BR>

Transparent background-color: Transparent Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="background-color: Transparent;">TT</TT><BR>
<B style="background-color: Transparent;">B</B><BR>
<I style="background-color: Transparent;">Italic</I><BR>
<BIG style="background-color: Transparent;">BIG</BIG><BR>
<SMALL style="background-color: Transparent;">SMALL</SMALL><BR>
<STRIKE style="background-color: Transparent;">STRIKE</STRIKE><BR>
<S style="background-color: Transparent;">S</S><BR>
<U style="background-color: Transparent;">U</U><BR>

Did this by adding a background image to the enclosing div tag.

Image Repeat-X
Image Repeat-X Image Repeat-X Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">TT</TT><BR>
<B style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">B</B><BR>
<I style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">Italic</I><BR>
<BIG style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">BIG</BIG><BR>
<SMALL style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">SMALL</SMALL><BR>
<STRIKE style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">STRIKE</STRIKE><BR>
<S style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">S</S><BR>
<U style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-x;">U</U><BR>

Image Repeat-Y Image Repeat-Y Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">TT</TT><BR>
<B style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">B</B><BR>
<I style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">Italic</I><BR>
<BIG style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">BIG</BIG><BR>
<SMALL style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">SMALL</SMALL><BR>
<STRIKE style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">STRIKE</STRIKE><BR>
<S style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">S</S><BR>
<U style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat-y;">U</U><BR>

Image no-repeat Image no-repeat Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">TT</TT><BR>
<B style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">B</B><BR>
<I style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">Italic</I><BR>
<BIG style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">BIG</BIG><BR>
<SMALL style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">SMALL</SMALL><BR>
<STRIKE style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">STRIKE</STRIKE><BR>
<S style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">S</S><BR>
<U style="background: url('images/box_aqua_bg.gif'); background-repeat: no-repeat;">U</U><BR>

Image Repeat Image Repeat Example:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">TT</TT><BR>
<B style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">B</B><BR>
<I style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">Italic</I><BR>
<BIG style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">BIG</BIG><BR>
<SMALL style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">SMALL</SMALL><BR>
<STRIKE style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">STRIKE</STRIKE><BR>
<S style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">S</S><BR>
<U style="background: url('images/box_aqua_bg.gif'); background-repeat: repeat;">U</U><BR>

These work too:


Color Color
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="color: red;">TT</TT><BR>
<B style="color: red;">B</B><BR>
<I style="color: red;">Italic</I><BR>
<BIG style="color: red;">BIG</BIG><BR>
<SMALL style="color: red;">SMALL</SMALL><BR>
<STRIKE style="color: red;">STRIKE</STRIKE><BR>
<S style="color: red;">S</S><BR>
<U style="color: red;">U</U><BR>

Cursor Cursor
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="Cursor: crosshair;">TT</TT><BR>
<B style="Cursor: crosshair;">B</B><BR>
<I style="Cursor: crosshair;">Italic</I><BR>
<BIG style="Cursor: crosshair;">BIG</BIG><BR>
<SMALL style="Cursor: crosshair;">SMALL</SMALL><BR>
<STRIKE style="Cursor: crosshair;">STRIKE</STRIKE><BR>
<S style="Cursor: crosshair;">S</S><BR>
<U style="Cursor: crosshair;">U</U><BR>

Here are the options:


Direction Direction
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="direction: rtl;">TT</TT><BR>
<B style="direction: rtl;">B</B><BR>
<I style="direction: rtl;">Italic</I><BR>
<BIG style="direction: rtl;">BIG</BIG><BR>
<SMALL style="direction: rtl;">SMALL</SMALL><BR>
<STRIKE style="direction: rtl;">STRIKE</STRIKE><BR>
<S style="direction: rtl;">S</S><BR>
<U style="direction: rtl;">U</U><BR>

Here are the options:


Display Display
CSS Display is being evealuated for implementation on this page.
Float Float- right
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="float: right;">TT</TT><BR>
<B style="float: right;">B</B><BR>
<I style="float: right;">Italic</I><BR>
<BIG style="float: right;">BIG</BIG><BR>
<SMALL style="float: right;">SMALL</SMALL><BR>
<STRIKE style="float: right;">STRIKE</STRIKE><BR>
<S style="float: right;">S</S><BR>
<U style="float: right;">U</U><BR>


Float- left
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="float: left;">TT</TT><BR>
<B style="float: left;">B</B><BR>
<I style="float: left;">Italic</I><BR>
<BIG style="float: left;">BIG</BIG><BR>
<SMALL style="float: left;">SMALL</SMALL><BR>
<STRIKE style="float: left;">STRIKE</STRIKE><BR>
<S style="float: left;">S</S><BR>
<U style="float: left;">U</U><BR>

Float- none
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="float: none;">TT</TT><BR>
<B style="float: none;">B</B><BR>
<I style="float: none;">Italic</I><BR>
<BIG style="float: none;">BIG</BIG><BR>
<SMALL style="float: none;">SMALL</SMALL><BR>
<STRIKE style="float: none;">STRIKE</STRIKE><BR>
<S style="float: none;">S</S><BR>
<U style="float: none;">U</U><BR>

Font Just can't see doing all these tags for this object.

Margin Margin
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="margin-top: 20px;">TT</TT><BR>
<B style="margin-top: 20px;">B</B><BR>
<I style="margin-top: 20px;">Italic</I><BR>
<BIG style="margin-top: 20px;">BIG</BIG><BR>
<SMALL style="margin-top: 20px;">SMALL</SMALL><BR>
<STRIKE style="margin-top: 20px;">STRIKE</STRIKE><BR>
<S style="margin-top: 20px;">S</S><BR>
<U style="margin-top: 20px;">U</U><BR>

Here are the options:


Padding padding
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="padding: 12px;">TT</TT><BR>
<B style="padding: 12px;">B</B><BR>
<I style="padding: 12px;">Italic</I><BR>
<BIG style="padding: 12px;">BIG</BIG><BR>
<SMALL style="padding: 12px;">SMALL</SMALL><BR>
<STRIKE style="padding: 12px;">STRIKE</STRIKE><BR>
<S style="padding: 12px;">S</S><BR>
<U style="padding: 12px;">U</U><BR>


Here are the options:


Position position
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="position: relative; top:-50; left:5">TT</TT><BR>
<B style="position: relative; top:-50; left:5">B</B><BR>
<I style="position: relative; top:-50; left:5">Italic</I><BR>
<BIG style="position: relative; top:-50; left:5">BIG</BIG><BR>
<SMALL style="position: relative; top:-50; left:5">SMALL</SMALL><BR>
<STRIKE style="position: relative; top:-50; left:5">STRIKE</STRIKE><BR>
<S style="position: relative; top:-50; left:5">S</S><BR>
<U style="position: relative; top:-50; left:5">U</U><BR>


Here are the options:


Text Align text align
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-align: right">TT</TT><BR>
<B style="text-align: right">B</B><BR>
<I style="text-align: right">Italic</I><BR>
<BIG style="text-align: right">BIG</BIG><BR>
<SMALL style="text-align: right">SMALL</SMALL><BR>
<STRIKE style="text-align: right">STRIKE</STRIKE><BR>
<S style="text-align: right">S</S><BR>
<U style="text-align: right">U</U><BR>


center
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-align: center">TT</TT><BR>
<B style="text-align: center">B</B><BR>
<I style="text-align: center">Italic</I><BR>
<BIG style="text-align: center">BIG</BIG><BR>
<SMALL style="text-align: center">SMALL</SMALL><BR>
<STRIKE style="text-align: center">STRIKE</STRIKE><BR>
<S style="text-align: center">S</S><BR>
<U style="text-align: center">U</U><BR>


justify:
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-align: justify">TT</TT><BR>
<B style="text-align: justify">B</B><BR>
<I style="text-align: justify">Italic</I><BR>
<BIG style="text-align: justify">BIG</BIG><BR>
<SMALL style="text-align: justify">SMALL</SMALL><BR>
<STRIKE style="text-align: justify">STRIKE</STRIKE><BR>
<S style="text-align: justify">S</S><BR>
<U style="text-align: justify">U</U><BR>


Here are the options:


Text Decoration text decoration
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-decoration: line-through">TT</TT><BR>
<B style="text-decoration: line-through">B</B><BR>
<I style="text-decoration: line-through">Italic</I><BR>
<BIG style="text-decoration: line-through">BIG</BIG><BR>
<SMALL style="text-decoration: line-through">SMALL</SMALL><BR>
<STRIKE style="text-decoration: line-through">STRIKE</STRIKE><BR>
<S style="text-decoration: line-through">S</S><BR>
<U style="text-decoration: line-through">U</U><BR>


blink
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-decoration: blink">TT</TT><BR>
<B style="text-decoration: blink">B</B><BR>
<I style="text-decoration: blink">Italic</I><BR>
<BIG style="text-decoration: blink">BIG</BIG><BR>
<SMALL style="text-decoration: blink">SMALL</SMALL><BR>
<STRIKE style="text-decoration: blink">STRIKE</STRIKE><BR>
<S style="text-decoration: blink">S</S><BR>
<U style="text-decoration: blink">U</U><BR>


Here are the options:


Text Indent text indent
text-indent: 100px;
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-indent: 100px;">TT</TT><BR>
<B style="text-indent: 100px;">B</B><BR>
<I style="text-indent: 100px;">Italic</I><BR>
<BIG style="text-indent: 100px;">BIG</BIG><BR>
<SMALL style="text-indent: 100px;">SMALL</SMALL><BR>
<STRIKE style="text-indent: 100px;">STRIKE</STRIKE><BR>
<S style="text-indent: 100px;">S</S><BR>
<U style="text-indent: 100px;">U</U><BR>

Here are the options:


Text Justify text justify
text-justify: newspaper;
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-justify: newspaper;">TT</TT><BR>
<B style="text-justify: newspaper;">B</B><BR>
<I style="text-justify: newspaper;">Italic</I><BR>
<BIG style="text-justify: newspaper;">BIG</BIG><BR>
<SMALL style="text-justify: newspaper;">SMALL</SMALL><BR>
<STRIKE style="text-justify: newspaper;">STRIKE</STRIKE><BR>
<S style="text-justify: newspaper;">S</S><BR>
<U style="text-justify: newspaper;">U</U><BR>


Here are the options:


Text Shadow text shadow
text-shadow: blue;
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-shadow: blue;">TT</TT><BR>
<B style="text-shadow: blue;">B</B><BR>
<I style="text-shadow: blue;">Italic</I><BR>
<BIG style="text-shadow: blue;">BIG</BIG><BR>
<SMALL style="text-shadow: blue;">SMALL</SMALL><BR>
<STRIKE style="text-shadow: blue;">STRIKE</STRIKE><BR>
<S style="text-shadow: blue;">S</S><BR>
<U style="text-shadow: blue;">U</U><BR>


Here are the options:


Text Transform text transform
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-transform: uppercase;">TT</TT><BR>
<B style="text-transform: uppercase;">B</B><BR>
<I style="text-transform: uppercase;">Italic</I><BR>
<BIG style="text-transform: uppercase;">BIG</BIG><BR>
<SMALL style="text-transform: uppercase;">SMALL</SMALL><BR>
<STRIKE style="text-transform: uppercase;">STRIKE</STRIKE><BR>
<S style="text-transform: uppercase;">S</S><BR>
<U style="text-transform: uppercase;">U</U><BR>

Here are the options:


Text Underline Position text underline position
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="text-underline-position: above;">TT</TT><BR>
<B style="text-underline-position: above;">B</B><BR>
<I style="text-underline-position: above;">Italic</I><BR>
<BIG style="text-underline-position: above;">BIG</BIG><BR>
<SMALL style="text-underline-position: above;">SMALL</SMALL><BR>
<STRIKE style="text-underline-position: above;">STRIKE</STRIKE><BR>
<S style="text-underline-position: above;">S</S><BR>
<U style="text-underline-position: above;">U</U><BR>

Here are the options:


Vertical Align vertical align
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="vertical-align: top;">TT</TT><BR>
<B style="vertical-align: top;">B</B><BR>
<I style="vertical-align: top;">Italic</I><BR>
<BIG style="vertical-align: top;">BIG</BIG><BR>
<SMALL style="vertical-align: top;">SMALL</SMALL><BR>
<STRIKE style="vertical-align: top;">STRIKE</STRIKE><BR>
<S style="vertical-align: top;">S</S><BR>
<U style="vertical-align: top;">U</U><BR>


TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="vertical-align: middle;">TT</TT><BR>
<B style="vertical-align: middle;">B</B><BR>
<I style="vertical-align: middle;">Italic</I><BR>
<BIG style="vertical-align: middle;">BIG</BIG><BR>
<SMALL style="vertical-align: middle;">SMALL</SMALL><BR>
<STRIKE style="vertical-align: middle;">STRIKE</STRIKE><BR>
<S style="vertical-align: middle;">S</S><BR>
<U style="vertical-align: middle;">U</U><BR>


TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="vertical-align: bottom;">TT</TT><BR>
<B style="vertical-align: bottom;">B</B><BR>
<I style="vertical-align: bottom;">Italic</I><BR>
<BIG style="vertical-align: bottom;">BIG</BIG><BR>
<SMALL style="vertical-align: bottom;">SMALL</SMALL><BR>
<STRIKE style="vertical-align: bottom;">STRIKE</STRIKE><BR>
<S style="vertical-align: bottom;">S</S><BR>
<U style="vertical-align: bottom;">U</U><BR>


Here are the options:


Visibility visibility
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="visibility: hidden;">TT</TT><BR>
<B style="visibility: hidden;">B</B><BR>
<I style="visibility: hidden;">Italic</I><BR>
<BIG style="visibility: hidden;">BIG</BIG><BR>
<SMALL style="visibility: hidden;">SMALL</SMALL><BR>
<STRIKE style="visibility: hidden;">STRIKE</STRIKE><BR>
<S style="visibility: hidden;">S</S><BR>
<U style="visibility: hidden;">U</U><BR>


Here are the options:


White Space white space
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="white-space: nowrap;">TT</TT><BR>
<B style="white-space: nowrap;">B</B><BR>
<I style="white-space: nowrap;">Italic</I><BR>
<BIG style="white-space: nowrap;">BIG</BIG><BR>
<SMALL style="white-space: nowrap;">SMALL</SMALL><BR>
<STRIKE style="white-space: nowrap;">STRIKE</STRIKE><BR>
<S style="white-space: nowrap;">S</S><BR>
<U style="white-space: nowrap;">U</U><BR>


Here are the options:


Word Spacing word spacing
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="word-spacing: -5px;">TT</TT><BR>
<B style="word-spacing: -5px;">B</B><BR>
<I style="word-spacing: -5px;">Italic</I><BR>
<BIG style="word-spacing: -5px;">BIG</BIG><BR>
<SMALL style="word-spacing: -5px;">SMALL</SMALL><BR>
<STRIKE style="word-spacing: -5px;">STRIKE</STRIKE><BR>
<S style="word-spacing: -5px;">S</S><BR>
<U style="word-spacing: -5px;">U</U><BR>


Here are the options:


Word Wrap word wrap
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="word-wrap: break-word;">TT</TT><BR>
<B style="word-wrap: break-word;">B</B><BR>
<I style="word-wrap: break-word;">Italic</I><BR>
<BIG style="word-wrap: break-word;">BIG</BIG><BR>
<SMALL style="word-wrap: break-word;">SMALL</SMALL><BR>
<STRIKE style="word-wrap: break-word;">STRIKE</STRIKE><BR>
<S style="word-wrap: break-word;">S</S><BR>
<U style="word-wrap: break-word;">U</U><BR>


TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="word-wrap: normal;">TT</TT><BR>
<B style="word-wrap: normal;">B</B><BR>
<I style="word-wrap: normal;">Italic</I><BR>
<BIG style="word-wrap: normal;">BIG</BIG><BR>
<SMALL style="word-wrap: normal;">SMALL</SMALL><BR>
<STRIKE style="word-wrap: normal;">STRIKE</STRIKE><BR>
<S style="word-wrap: normal;">S</S><BR>
<U style="word-wrap: normal;">U</U><BR>


Here are the options:


Zoom zoom
TT
B
Italic
BIG
SMALL
STRIKE
S
U

Basic Example:
<TT style="zoom: 50%;">TT</TT><BR>
<B style="zoom: 50%;">B</B><BR>
<I style="zoom: 50%;">Italic</I><BR>
<BIG style="zoom: 50%;">BIG</BIG><BR>
<SMALL style="zoom: 50%;">SMALL</SMALL><BR>
<STRIKE style="zoom: 50%;">STRIKE</STRIKE><BR>
<S style="zoom: 50%;">S</S><BR>
<U style="zoom: 50%;">U</U><BR>


Here are the options: