Learn HTML
Step by step guide to create a home page with HTML
Layout
OK, You got it ;o)
Now, the next to consider is the layout of the HTML page. The best way to
do the layout is with the use of tables. You can do some VERY complex
layout using tables. You are using the table as a "grid" to
hang your content up on.
What happens here is:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
Create a table with no visible border, no cellpadding, and no spacing
between the cells.
Make the table 100% the width og the home page.
<tr>
Create a table row
<td width="50%">This is cell 1</td>
Create a cell in that row, that is 50% wide with respect to the table
"This is cell 1" is your text
End the cell here
</td>
... and then it goes on the same way...
<td width="50%">This is cell 2</td>
</tr>
<tr>
<td width="50%">This is cell 3</td>
<td width="50%">This is cell 4</td>
</tr>
</table>
|