We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
it doesn't work.i have try
Sorry, something went wrong.
I'm gonna try fix it and paste a link here for a 2024 version soon
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: