Topics:
» ASP
» HTML
» Stylesheets
» JavaScript
» PHP
» Flash
» More...

Site:
» Forum
» About

HTML Formatting

The first lot are basic formatting tags to change the way things look on your page. Most of them apply to text.

Bold text
<b>This text would be bold</b>
This would produce:
This text would be bold

Italic text
<i>This text would be italic</i>
This would produce:
This text would be italic

Underlined text
Generally its better to use CSS for this
<u>This text would be underlined</u>
This would produce:
This text would be underlined

Big text
Makes text a little bit bigger
<big>This text would be bigger</big>
Produces the result:
This text would be bigger

Small text
Makes text a little bit smaller
<small>This text would be smaller</small>
Produces the result:
This text would be smaller