HTML - Page Layouts and Templates
HTML layout is very basic. Not many options exist with the body tag alone. Tables, on the other hand, are the bread and butter of HTML layouts. Any element may be placed inside of a table, including tables themselves!
HTML Code:
<table id="shell" bgcolor="black" border="1" height="200" width="300"> <tr> <td> <table id="inner" bgcolor="white" height="100" width="100"> <tr> <td>Tables inside tables!</td> </tr> </table> </td> </tr> </table>
Tables inside tables:
|
The white table (identified as inner) exists inside of the (shell) table, the black one. A light bulb should be going off inside of your head as you explore how this system will allow for the creation of limitless layouts.
0 comments:
Post a Comment