/ Published in: HTML
Basic layout of a typical template homepage
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <div id="content"> <div id="header"> <div id="header_left"> <img id="header_logo" alt="" /> </div> <div id="header_right"> </div> </div><!-- End Header --> <ul id="main_nav"> </ul><!-- End Main Nav --> <div id="left_sec"> <ul id="lef_nav"> </ul> </div><!-- End Left Section --> <div id="top_sec"> </div><!-- End Top Section --> <div id="mid_sec"> </div><!-- End Middle Section --> <div id="bot_sec"> <div id="footer"> <img id="dis_logo" /> </div><!-- End Footer --> </div><!-- End Bottom Section --> </div><!-- End Content--> </body> </html>