+ 1
Please tell me how can i make a button which redirects to another website
Please
2 Antworten
+ 3
You can use this:
<button onclick="window.open( 'website url' )">Click Me</button>
or <a> tag:
<a href="website url">Click me</a>
+ 1
Thank you bro
Please