Need to create a simple SEO friendly intro page

Discussion in 'HTML & Website Design' started by mattonline, Nov 15, 2007.

  1. #1
    OK, what i want is a SEO friendly web page basically,

    all i want is the page split in 2 down the middle and one side one colour and the other another (aint decided yet) and i want a link on the left side saying Personal and another on the right side saying business.

    Does anyone know how i could set this up, its been a while since i done HTML, i have dreamweaver,
     
    mattonline, Nov 15, 2007 IP
  2. cormac

    cormac Peon

    Messages:
    3,662
    Likes Received:
    222
    Best Answers:
    0
    Trophy Points:
    0
    #2
    For such a basic page I would look into doing it with CSS, great learning point and CSS is very friendly.

    Try Codesucks for a simple CSS template and play around with it in Dreamweaver.
     
    cormac, Nov 15, 2007 IP
  3. rochow

    rochow Notable Member

    Messages:
    3,991
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    240
    #3
    Something like:
    <html>
    <head>
    <title>Split 50/50</title>
    <style type="text/css">
       body {margin:0}
       #left {background:#fff;float:left;height:100%;width:50%}
       #right {background:#000;float:left;height:100%;width:50%}
    </style>
    <body>
    <div id="left">
       Personal
    </div>
    <div id="right">
       Business
    </div>
    </body>
    </html>
    Code (markup):
     
    rochow, Nov 15, 2007 IP
  4. soulscratch

    soulscratch Well-Known Member

    Messages:
    964
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    155
    #4
    ^ The rules you have for height won't act like you want them to. He would need faux columns.
     
    soulscratch, Nov 15, 2007 IP
  5. rochow

    rochow Notable Member

    Messages:
    3,991
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    240
    #5
    Why won't that work?

    In theory it would.. I've never made something like this though, so I could quite easily be work
     
    rochow, Nov 15, 2007 IP
  6. soulscratch

    soulscratch Well-Known Member

    Messages:
    964
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    155
    #6
    Try it out and see.
     
    soulscratch, Nov 15, 2007 IP
  7. rochow

    rochow Notable Member

    Messages:
    3,991
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    240
    #7
    Ok well it works in good browsers ;)

    I guess another solution would be to make a wide 1px high image (say 3000px) and then just center it... so

    Else, tables are very sexy for this old skool stuff
     
    rochow, Nov 15, 2007 IP