I want to make the footer position at the bottom of the page. My code for footer is...
footer{
height: 80px;
background-color: rgb(93, 158, 255);
color: white;
text-align: center;
position: relative;
bottom: 0;
}
<html>
<body>
<footer>
<div class="footer">
<h5>Copyrigth ©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script>
</h5>
<h5>Designed by: - Junior Web Development</h5>
</div>
</footer>
</body>
</html>
Result is index.php