Horje
How to create Button as a Link

To use an HTML button as a link, you have to add some JavaScript code.


Full Example of Button as a Link

JavaScript allows you to specify what happens at certain events, such as a click of a button:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>Button as a Links</h2>

<p>Click the button to go to the HTML tutorial.</p>

<button onclick="document.location='https://itupto.com'">HTML Tutorial</button>

</body>
</html>

Output should be:

Full Example of Button as a Link





Category:
Web Tutorial
Sub Category:
HTML Links
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference