open new page on button click html code example
Example 1: how to open new html page on button click
<!DOCTYPE html>
<html>
<head>
<script>
function openLink() {
window.open("https://www.w3schools.com");
}
</script>
</head>
<body>
<form>
<input type="button" value="Open Window" onclick="openWin()">
</form>
</body>
</html>
Example 2: onclick open new url html
<input type="button" value="button name" onclick="window.open('http://www.website.com/page')" />