how to add button to open a website using html
<button onclick="window.open('http://www.example.com')">
</button>
how to add button to open a website using html
<button onclick="window.open('http://www.example.com')">
</button>
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>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us