Creating a Table

  • Let's start out with the basic fundamentals of HTML, creating a table to organize data. Whenever you think, how do I make words, pictures, anything appear beside each other, or how do I layout data in an organized way...tables are the way to go...except that divs are better, but we will get there.

    Basic components:

    <table> - creates the table that will bundle content together

    <tr> - Table Row, organizes data by row

    <td> - The data within the row, creating columns, as many as you want in the table. Just don't forget that for every tag that you open, you need a closing tag that starts with a / and looks like </table>

     

  • <table>

    <tr>

    <td>

    Draw the Owl

    </td>

    </tr>

    </table>

  • Draw an Owl

  • Drawl an Owl