Header Elements are located at the top of the User Interface and are often items that draw users attention as soon as they load the page up. Effective use of a header element can enhance user experience with the product. One of the most common uses of header element is an image slideshow.
Basic Footer
HTML, CSS Code and JS Script
HTML Code
CSS Code
.footer {
background-color: #ff6633;
height: 20%;
width: 100%;
color: #333333;
text-align: center;
}
3 Column Footer
HTML, CSS Code and JS Script
HTML Code
CSS Code
.footer {
display: table;
table-layout: fixed;
background-color: #ff6633;
height: 20%;
width: 100%;
color: #f2f2f2;
text-align: center;
}
.footer > div {
display: table-cell;
}