Site hosted by Angelfire.com: Build your free website today!
Special stuff!

There are more than one sections on special stuff... Choose a section...

[1][2][3]






Tables

Tables are realllllly useful. So, of course, there's lots of things you can do with them. the most basic basic table looks like this:

some writing goes here and some writing goes here.

The code for that is:

<table border="1"> <tr> <td>some writing</td> <td>some writing</td> </tr> </table>

Of course that is pretty boring. You can add lots of color, huge borders, or no borders... basically anything you want. To have border colors, you would write this:

<table border="1" bordercolor="#ff00cc"> <tr> <td>writing</td> <td>writing</td> </tr> <tr> <td>stuff</td> <td>stuff</td> </tr> </table>That would look likt this:

writing writing
stuff stuff

To actually have the cells different colors, you'd have to write this:

<table border="8" cellspacing="0" cellpadding="0" bordercolor="Blue"> <tr> <tr> <td bgcolor="green" cellpadding="5">lalala</td> <td bgcolor="cyan" cellpadding="5">lalala</td> </tr></tr> <tr> <td bgcolor="green" cellpadding="5">lalala</td> <td bgcolor="cyan" cellpadding="5">lalala</td> </tr></table>That would look:

hello lalala
lalala lalala
lalala lalala
Like that

The top






Showing HTML code

There are two ways to show HTML code. The first way is BY FAR the eaisest. You would write:

<XMP>What code wou want here </xmp> Everything inside the xmp would show up as code. The other way is this: &lt; that would look like this:< and &gt; would look like this > Both ways look just fine.The top







Re-directing

if you move your page you may want people that used your page to know where the new one went. here is the code to do it.

<meta http-equiv="refresh" content="0; url=The new place.html"> The top

[Home] [The Basics] [Colors] [Layout] [Fun] [extras] [Making Links] [Fonts] [get a page] [Images] [links]