This is the 4th part in a series on Web design and development. Today's lesson will focus on tables. Since tables can get very complex, the remainder of coverage will be in a future article. Anyways, here we go!
There are several HTML tags for tables, none of which are self-closing. Tags will be encapsulated inside each other to form complex tables.
The HTML tag for a table is <table>. Tables can have 4 main section types to them. Those are <caption>, <thead>, <tbody>, and <tfoot>. <tbody> is the most common of these, so it will be the focus for this lessen. From what we have so far, here is how an empty table would look:
Tables are defined in row-by-column order, using the <tr> and <td> tags. A special type of header <td> tag exists called <th>. Many browsers will just make <th> a bold and center-aligned <td>.
Let's make a simple table with the times table of 1x1 to 3x3. Start with the shell of the table, again:
Did you follow that so far? We're creating a table which has the first row showing that it's a "X" (times) table, and it's listing on set of multiplicands.
Now we need to create 3 more rows, on for each of the other multiplicands and their products.
I will delve into JavaScript after finishing tables and a few other HTML tags, followed by simple style sheets. Have I even covered the IMG tag yet? I'll have to look through past articles to see. That's a very important one.
For those who already write HTML, you may notice that I'm not putting many attributes inside the tags in the lessons. I'm holding most of that until later since stylesheets cover the majority of them nowadays.