how to open another page in html on button click code example
Example: 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>