Tuesday February 16, 2010
- So now you've added an image, a list, lets have you add a table...
- Start with a table tag <table>
- to build a table you need rows <tr>
- and inside a row you can have multiple cells <td> each cell (the td stands for table data) will contain information. Remember that each tag has a closing tag paired with it, so in one row you can have multiple data tags and they will display from left to right. If you have two rows with four data cells you will end up with four columns.
- below are examples for a two row table with four columns..
- <table>
- <tr>
- <td>cell 1</td>
- <td>cell 2</td>
- <td>cell 3</td>
- <td>cell 4</td>
- </tr>
- <tr>
- <td>cell 1</td>
- <td>cell 2</td>
- <td>cell 3</td>
- <td>cell 4</td>
- </tr>
- </table>
- You should build a table that displays your class schedule (include class name, teacher name, and period
Hey Fernando, today is Friday January 22, 2010.
I'm curious to see how this reads from your point of view... You already have some of the basics of html, I assume this since I have given you some information and you are now asking for more.
So start out with a basic page, you will need the following tags for this:
- <html>
- <head>
- <title>
- <body>
Remember that tags come in pairs, so you have a start tag <html> and then an end tag </html> and information effected by those tags is nested in between the start and end.