Three Column Design Using HTML with Table : three Columns : Layout HTML CSS TUTORIALS


HTML CSS TUTORIALS » Layout » three Columns »

 

Three Column Design Using HTML with Table


 
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitionalt//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <title>Three Column Design Using HTML</title>
    <style rel="stylesheet" type="text/css">
table {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #666666;
}
.header {
  background-color: #f3f3f3;
  padding: 3px;
}

.nav {
  font-weight: bold;
  background-color: #e3e3e3;
  padding: 5px;
}

.content {
  padding: 10px;
}

.rightColumn {
  font-weight: bold;
  background-color: #e3e3e3;
  padding: 5px;
  vertical-align: top;
}
</style>
  </head> 
  <body>
    <table width="800" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td class="header" colspan="3"><h1>My Company Name</h1></td>
      </tr>
      <tr>
         <td class="nav" valign="top" width="100">
         <a href="">Home</a><br /><a href="">Products</a><br /><a href="">Services</a><br /><a href="">About Us</a><br /><a href="">Contact Us</a>
        </td>
        <td class="content">

        <h2>Sample Web Page</h2>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc eleifend, erat id 
            commodo placerat, nulla purus bibendum justo, in dictum orci mi vitae nulla. Nullam 
            semper viverra nulla. Sed lacinia feugiat eros. Maecenas ullamcorper ligula quis odio. 
            Donec pede massa, pharetra sit amet, accumsan a, iaculis egestas, lectus. Etiam 
            ullamcorper elementum wisi. Etiam et felis aliquet dui tempus sagittis. Donec dapibus 
            ipsum id leo. Integer est ante, imperdiet non, suscipit sit amet, varius a, sem. 
            Integer lobortis wisi id erat. Nullam aliquet augue ac elit. Nulla facilisi. Vivamus 
            ligula tortor, molestie at, accumsan quis, semper vitae, augue. Praesent pede neque, 
            sollicitudin non, facilisis sed, viverra a, pede. Cras nec urna. Curabitur ut metus. 
            Curabitur erat lacus, tempus vitae, elementum nec, pulvinar vel, leo. Sed a velit. 
            Proin erat. Donec sem. </p>


        </td>
        <td class="rightColumn">This right hand bar may contain additional links or info about the site or it may contain advertising.</td>
      </tr>
    </table>
  </body>
</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Layout
» three Columns