Header, sub header, footer with one column : One Column « Layout « HTML / CSS

Home
HTML / CSS
1.CSS
2.CSS Controls
3.Form
4.IE Firefox
5.Layout
6.Marquee Attributes
7.Meta Tags
8.Microsoft Attributes
9.Object
10.Reference
11.Style Basics
12.Tags
13.Templates
14.XML
HTML / CSS » Layout » One Column 
Header, sub header, footer with one column
   


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Splash page layout</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style rel="stylesheet" type="text/css">
#wrapper {
  border: 1px solid #033;
  position: relative;
}


body#cols3 #navigation {
  position: absolute;
  top: 6.8em;
  left: 0;
}

body#cols3 #related {
  position: absolute;
  top: 6.8em;
  right: 10px;
}


#navigation ul,#related h2 {
  margin-top: 0;
  padding-top: 0;
}


#footer {
  padding: 5px 0 5px 160px;
  clear: both;
  background: #D9FFF8;
  font-size: 0.8em;
  color: #030;
}
</style>
</head>

<body id="splash">
<div id="wrapper">
 <div id="header"><h1>Header</h1></div>
 
 <div id="breadcrumb">Sub header</div>
 
 <div id="content-wrapper">
  <div id="content-inner">
  <h2>Header 2</h2>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  <p>this is a test. this is a test. </p>
  
  </div>
 </div>
 
 <div id="navigation"></div>
 
 <div id="related"></div>
 
 <div id="footer">Footer</div>
</div>
</body>
</html>

   
    
  
Related examples in the same category
1.One column with two DIV section
2.Single column
3.Header with one column under
4.One column with content on the top and menu at the bottom
5.One column with content on the top and menu at the bottom, and margin in between
6.One column with header and footer only
7.One column: header, content
8.1 column, header, content, footer
9.Single column with header and footer
10.One column with header and footer
11.Single Columns with CSS
12.Liquid Design in CSS
13.Article layout
14.Fixed One-Column Layout (Basic)
15.Fixed One-Column #2 Layout (Basic)
16.Fixed height, three parts, single column
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.