Help! I just need a blank html template

Discussion in 'Give and Get Help' started by hortonteam, Nov 2, 2009.

  1. hortonteam New Member

    Can someone please help! I need a blank html template 8.5 wide (plain white) with a color on the outside of the doc, prefer dark blue, ready centered on the screen. So if someone prints it just prints the document.
  2. enigma1 Guest

    Here is a simple empty document 850px wide content and a dark blue background. You could remove the hard-coded height from the content div once you setup the actual content.

    Code:
    <!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" dir="ltr" lang="en">
    <head>
    <title>test page</title>
    <style type="text/css">
    
    body {
      font-family: Arial, sans-serif;
      font-size: 11px;
      line-height: 1.5;
      background-color: #000066;
    }
    
    #wrapper {
      margin: 0 auto;
      width: 850px;
      position: relative;
    }
    
    #content {
      background-color: #FFF;
      height: 800px;
      padding: 8px;
    }
    
    </style>
    </head>
    <body>
      <div id="wrapper">
        <div id="content">
    
        </div>
      </div>
    </body>
    </html>
  3. hortonteam New Member

    Thank You so much!