Kid's Guide Publish!
 
 
  Use the Kid's Guide to learn how to write web pages!
then use Publish! to learn how to get your pages live to the Internet!
BACK       

Kid's Guide

1 - Tags
2 - Page Sections
3 - Format/Nesting
4 - Head Tags
5 - Body tags
6 - Text Decoration
7 - Lists
8 - Colour
9 - Source
10 - Images
11 - Links/Anchor Tag
12 - Special Charaters
13 - Tables
    part 1 - rows & columns
    part 2 - backgrounds
    part 3 - alignment
    part 4 - borders
    part 5 - nesting
14 - Frames

Nesting in Tables

Properly formated nested tables will look like a wave. A broken table or a table that is missing bits wont be as flowing which will make it easier to find and fix.
Ex:

Correct Table   Bits Missing
Can you tell where?
<table>
    <tr>
        <td>
            <table>
                <tr>
                    <td> </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr>
        <td>
            <table>
                <tr>
                    <td> </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr>
        <td>
            <table>
                <tr>
                    <td> </td>
                </tr>
            </table>
        </td>
    </tr>
</table>
  <table>
    <tr>
        <td>
            <table>
                <tr>
                    <td> </td>
                </tr>
            </table>
    </tr>
    <tr>
            <table>
                <tr>
                    <td> </td>
                </tr>
            </table>
        </td>
    </tr>
        <td>
            <table>
                    <td> </td>
                </tr>
            </table>
        </td>
    </tr>
</table>

 

 
Safety and Privacy Policies We'd love to get your feedback! Who Made This?

Copyright © 2002 HTML4KIDSTM. All rights reserved.


Hi! I'm Jet Internet! I'm here to guide you through the site and help you with any questions you may have. When you see and text in red slide your cursor over the word then look here in my Speach bubble. I will be able to help with defining, explaining and providing extra information on that topic.

Cell
Each individual area created by <td></td> = Table Data cell
Can be made as rows, columns or combination of both.

Column
<td></td> = Table Data cell
Multiple Vertical areas within a table.