Results 1 to 5 of 5

Thread: Coding Help

  1. #1
    Join Date
    Jun 2005
    Location
    Scotland!!!! Mon The Scots
    Posts
    208
    Tokens
    0

    Default Coding Help

    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


  2. #2
    Join Date
    Jun 2005
    Location
    Scotland!!!! Mon The Scots
    Posts
    208
    Tokens
    0

    Default

    Any1???Plz

  3. #3
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:


  4. #4
    Join Date
    Jun 2005
    Location
    Scotland!!!! Mon The Scots
    Posts
    208
    Tokens
    0

    Default

    I need to do it with notepad

  5. #5
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    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.

    HTML Code:
    <table width="500" border="1" cellspacing="1" cellpadding="1">
    <tr> says that you want what is inside it on a row inside the table.
    <td> is a collum inside the table.
    HTML Code:
     <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
     </tr>
    <table> says where the code for the table stops.
    HTML Code:
       </table>
    kinda quit.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •