Saturday, February 25, 2012

HTML - Tables

<html>
     <head>
         <title>Tables HTML</title>
     </head>

     <body>

        <table border = "1" width="60%">
            <tr>
                <td>Cell 1  HTML</td>
                <td>Cell 2  TABLES</td>
            </tr>
            <tr>
                <td>Cell 3  ANDRE L S</td>
                <td>Cell 4  COMMAND LINE</td>
            </tr>
        </table>
     </body>
</html>

will look like this in the browser:


Cell 1 HTML Cell 2 TABLES
Cell 3 ANDRE L S Cell 4 COMMAND LINE

0 comentários:

Post a Comment