Left navigation bar : Menu : CSS Controls HTML CSS TUTORIALS


HTML CSS TUTORIALS » CSS Controls » Menu »

 

Left navigation bar


 


<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style rel="stylesheet" type="text/css">
div#navigation {
  float: left;
  width: 200px;
  height: 100%;
  color: #ffffff;
  background-color: #666;
  border: 1px solid #000;
  padding: 5px;
}
{
  display: block;
  text-decoration: none;
}
</style>
</head>

<body>
  <div id="navigation">
    <a href="">Navigation item 1</a>
    <a href="">Navigation item 2</a>
    <a href="">Navigation item 3</a>
    <a href="">Navigation item 4</a>
  </div>
</body>

</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo CSS Controls
» Menu