| Basic HTML: |
This page contains a basic HTML tutorial.
Other pages:
For Chat HTML go here
For HTML TABLES go here
Basics:
For italics use
<i> Words </i> Result: Words
<b> Words </b> Result: Words
<u> Words </u> Result: Words
<font size=5> Words </font>
Result: Words
Notes: You can also increase the size by using "font size=+2" in the place of "font size=5". Numbers up to 8 can be used.
<font color=red> Words </font>
Result: Words
Notes: You can use the color number (format #FF0000) in place of the name "red" (those are zeros, not the letter O) Some colors are browser safe and some are not. For browser safe colors go here: Colors gif
<font color=red size=+2> Words </font>
Result: Words
<br> Result: First line Next line
<p> Result: First line
Next line
<PRE> Words </pre>Result:
Words
<blink>Words</blink>
Result:
<center> Words </center>Result:
<hr noshade> Result:
Or use
<hr> Result:
Or use
<hr size=20 width=100> Result:
Slightly Advanced:
<font size=5><b><u> Words <u><b></font>
Result: Words
Note: HTML tags should not be overlaped. In other words:<b><u> Words <u><b>Whereas this is problematic:
<b><u> Words <b><u>