Create a 3 columns footer with links - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer Column

Description

Create a 3 columns footer with links

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
footer {<!--from   ww w . ja  v  a 2  s . c o m-->
   background:Chartreuse;
   height:201px;
   border-radius:26px 26px 0 0;
   margin:41px 21px 0 21px;
   color:yellow;
}

.fLeft {
   float:left;
   width:34.4%;
   text-align:center;
}

.fCenter {
   float:left;
   width:34.4%;
   text-align:center;
}

.fRight {
   float:right;
   width:34.4%;
   text-align:center;
}
</style> 
 </head> 
 <body> 
  <footer> 
   <div class="fLeft"> 
    <p>Link</p> 
    <p>Link</p> 
    <p>Link</p> 
    <p>Link</p> 
   </div> 
   <div class="fCenter"> 
    <p>Link</p> 
    <p>Link</p> 
    <p>Link</p> 
    <p>Link</p> 
   </div> 
   <div class="fRight"> 
    <p>Link</p> 
    <p>Link</p> 
    <p>Link</p> 
    <p>Link</p> 
   </div> 
  </footer>  
 </body>
</html>

Related Tutorials