electriic ink 1 Report post Posted May 28, 2006 What's wrong with table layouts? Some of the most popular sites use them, bbc, miniclip and all IPB-based forums. They can also be a great way to start designa successful layout: <!XHTML DOCTYPE AND WHATNOT> <html> <head> <title> Test Page </title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-5"> </head> <body> <table align="center> <tr> <td> <img src="myheader.png" alt="Welcome To Test Page" /> </td> </tr> </table> <table> <tr> <td> <h2> Navigation </h2> <br> <br> <ul> <li> Home </li> <!-- Not to sure how to form <li> with xhtml. Is it <li /> TEXT or <li> TEXT </li>? --> <li> Games </li> <li> Bla </li> </ul> </td> <td> <h2> Content </h2> Lorem ipsum id est..... </td> </tr> </table> </body> </html> That code will produce the basis for a site with the navigation down the left hand side. If you add some small-sized images as backgrounds and as the header, you'll site will look nice and be quick-loading.As navigation is on the left hand side, you can have an infinite number of listings without producing annoying horizontal scrollbars.If you want you could just use premade templates from sites like css beauty. Share this post Link to post Share on other sites