since your are using "#footer" as href it means when someone clicks on your anchor element then it will redirect the page to the element that contain id=footer.
so your code should be :
<a href="#footer"> Jump to Bottom</a>
<footer id="footer">Copyright Cat Photo App</footer>