"Privacy policy" link is shown in the middle of my webpage. I need to set it on the bottom of my page. The below given is my CSS and HTML source codes. I can't able to set it on bottom.
#footer {
width: 700px;
margin: 0 auto;
padding-top: 200px;
}
#footer p {
text-align: center;
padding: 30px;
font-size: 10px;
}
<div id="footer">
<p> Copyright© 2016 school.pythonanywhere.com. All Rights Reserved <a href="{% url 'privacy' %}">Privacy policy</a></p>
</div>