Useful Reloading
So a useful thing that I've recently discovered is writing a short Javascript snippet of code to reload the page. This is useful when coding because you can just save the changes of your file and have the website reload by itself - no need to switch to your browser and manually reload.
Even for CSS where you can use developer tools for Safari/Chrome/Firefox to add CSS styles and see their effect immediately, it is still useful to go with this Javascript snippet method because you're additionally saving all changes. With the developer tools you would have to copy and paste the code back in your file (although there are probably ways to save directly to your file).
So without further delay:
<script>
window.setTimeout("window.location.reload()", 2500);
</script>












