document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Title of the document</title>
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6. </head>
  7.  
  8. <body>
  9.     <div id="Container">
  10.         <div id="header">
  11.             Head
  12.         </div>
  13.         <div id="menu">
  14.             Menubar
  15.         </div>
  16.         <div id="content">
  17.             <div id ="left">
  18.                 Left
  19.             </div>
  20.             <div id="mainco">
  21.                 Main Content
  22.             </div>
  23.             <div id="right">
  24.                 Right
  25.             </div>
  26.         </div>
  27.         <div id="footer">
  28.             Footer
  29.         </div>
  30.     </div>
  31. </body>
  32.  
  33. </html>
');