Hello I'm trying to code a calculator for fun and I was wondering how to make an html button not a hyperlink and the button when you click it will bring you to another html page in that folder.
Thanks, lions
Hello I'm trying to code a calculator for fun and I was wondering how to make an html button not a hyperlink and the button when you click it will bring you to another html page in that folder.
Thanks, lions
The easiest way to achieve this is to put the button into a form like this:
<form action="stackoverflow.com">
<input type="submit" value="Button Text">
</form>