Following is the CSS Tips and Tricks that will Create a Fixed bar at bottom of webpage.Check this css tips.
<html>
<head>
<style type="text/css">
#BottomDiv
{
width: 100%;
background-color: gray;
border-top: 1px solid #fff;
position: fixed;
font-size:17px;
font-family:verdana;
bottom: 0;
left: 0;
right: 0;
color:white;
z-index:1000;
}
</style>
</head>
<body>
<div id="BottomDiv">
Hello, this is <a href="http://www.usetricks.com/">Usetricks.com</a> for more CSS Tips & Tricks Visit <a href="http://www.usetricks.com/">Usetricks.com</a>
</div>
</body>
</html>