Right,I have got to the stage where I can create a basic site but I cannot seem to make the layout coded.If anyone could code/tell me how to code this layout I would be very grateful and I would give rep
http://tinypic.com/esvhvq.jpg
Printable View
Right,I have got to the stage where I can create a basic site but I cannot seem to make the layout coded.If anyone could code/tell me how to code this layout I would be very grateful and I would give rep
http://tinypic.com/esvhvq.jpg
Any1???Plz
I need to do it with notepad
You'll need to put the sliced images into tables, I'll explain tables.
width=" x " says the overall width of the table.
cellspacing=" x " is the spacing between cells.
cellpadding=" x " is the padding inside the cells.
<tr> says that you want what is inside it on a row inside the table.HTML Code:<table width="500" border="1" cellspacing="1" cellpadding="1">
<td> is a collum inside the table.
<table> says where the code for the table stops.HTML Code:<tr>
<td> </td>
<td> </td>
</tr>
HTML Code:</table>