+ 2
How to add link to a button without using javascript
tell me
3 Antworten
+ 3
<button><a style="text-decoration:none; color:black;" href="http://google.com">Google link</a></button>
+ 4
you can also do in this way , but using <form action=""> is best
<a href="https://www.google.com"> <button> Test</button> </a>
+ 2
you can use form
<form action="link url" method="post" ><input type="submit" value="BUTTON"></form>