how to stick an element to the bottom of the page code example
Example 1: how to make element stick to bottom
.fotter{
position: fixed;
bottom: 0px;
}
Example 2: css bottom
.bottom {
position: fixed;
bottom: /*AMOUNT DOWN AFTER IT ADD REM OR % OR PX */;
}