The HTML for the page buttons is formatted incorrectly.
<button class="btn btn-info"><a style="color:white" href="weather.html">Weather</a></button>
should be
<input type="button" class="btn btn-info" onclick="location.href='weather.html';" value="Weather" />
Interactive content is not allowed inside of in HTML5.