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,
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.
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):
Why won't that work? In theory it would.. I've never made something like this though, so I could quite easily be work
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