eXTReMe Tracker
BEST VIEWED IN FIREFOX 3 in 1024x768 Screen Resolution.
will be back~
Home
Joon
Site
Goodies
Tutorials
Credits
Myspace
Youtube
Tracker

Advertisement

Must Clix Below.











WANNA BE HERE?

Welcome.

The Introduction.
ShadowedLife is here to help you make your own graphics as well as provide you some of the ones we made here ourselves. While you are here, you can read many of my blogs about my life just because... well, it's interesting and fun sometimes.. haha I'm kidding. The main purpose for my blogs are to keep an online journal about my life so that I can always look back to it later on. Comments are always appreciated. Thanks for stopping by and I hope you will return sometime.
The IceCaves.net Topsites

2008 WEBAWARD!

Happens ONCE a year!

Twitter.

What am I doing?

Family.

Like REAL Brothers & Sisters!

The Elites.

You must click =P
IceCaves.netOtr.Reiku.org Eerie-Silence.net Paint-Pops.net37am.netMemoryLast.netStarMonkeyDesigns.net PaperWritten.com ThisFiasco.net Blue-Cow.info RetroBlast.info Nancy.Frozen-Over.net
Be Joon's New Friend.

Affiliates!

Our Friends =].
Be Joon's New Friend.

Basic HTML Codes

Beginning to learn HTML.

These are just basic html codes that will help enhance your webdesigning skills, haha. This page deals with tables.

Beginning.

Tables are important in organizing content and texts in a website. You start a table by the following tag:
<table>Text Will Be Here.</table>

You can't see anything except for the text though, so we add the border attribute.
<table border="1">Text Will Be Here.</table> - That will look like:
Text Will Be Here.

What's Wrong with that Table?!
The text isn't inside of the table. You need to add a table row tag followed by a table data tag to get the text to stay inside.
<table border="1">
<tr>
<td>
Text Will Be Here.
</td>
</tr>
</table>
That will look like...
Text Will Be Here.

Want to change the BORDERCOLOR?
<table border="1" bordercolor="#FF0000">
<tr>
<td>
Text Will Be Here.
</td>
</tr>
</table>
That will look like...
Text Will Be Here.

Want to change the border style to SOLID?
<table border="1" bordercolor="#FF0000" cellspacing="0">
<tr>
<td>
Text Will Be Here.
</td>
</tr>
</table>
That will look like...
Text Will Be Here.

Want to add another column?
<table border="1" bordercolor="#FF0000" cellspacing="0">
<tr>
<td>
Text Will Be Here.
</td>
<td>
Text Will Be Here.
</td>
</tr>
</table>
That will look like...
Text Will Be Here. Text Will Be Here.

Want to add another row?
<table border="1" bordercolor="#FF0000" cellspacing="0">
<tr>
<td>
Text Will Be Here.
</td>
<td>
Text Will Be Here.
</td>
</tr>
<tr>
<td>
Text Will Be Here.
</td>
<td>
Text Will Be Here.
</td>
</tr>
</table>
That will look like...
Text Will Be Here. Text Will Be Here.
Text Will Be Here. Text Will Be Here.

© 2008 Joon ~ http://www.shadowedlife.harbourlights.org
ShadowedLife is the creator of everything on this website otherwise stated here in the credits page. This website is not affiliated or related to any of the following: Myspace, Freewebs, Xanga, etc. The only affiliates we have are the ones shown here on the front page of this website. Thanks for visiting, come back again.