How do I create an HTML button that acts like a link?
HTML The plain HTML way is to put it in a <form> wherein you specify the desired target URL in the action attribute. <form action=”https://google.com”> <input type=”submit” value=”Go to Google” /> </form> If necessary, set CSS display: inline; on the form to keep it in the flow with the surrounding text. Instead of <input type=”submit”> … Read more