One column : One Column : Layout HTML CSS TUTORIALS


HTML CSS TUTORIALS » Layout » One Column »

 

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></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style rel="stylesheet" type="text/css">

#wrapper 
 width: 922px;
}
#header {
 width: 900px;
 color: #333;
 border: 1px solid #ccc;
 height: 100px;
 background-color:#F3F2ED;
}
#content 
 width: 900px;
 color: #333;
 border: 1px solid #ccc;
 background:#eee;
 height: 350px;
}
</style>
</head>
<body>

<div id="wrapper">
  <div id="header"><h1><a href="">This is a test. </a></h1></div>
  <div id="content"> This is the content </div>
</div>

</body>
</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Layout
» One Column