open page with button html code example

Example 1: how to add button to open a website using html

<button onclick="window.open('http://www.example.com')">
</button>

Example 2: 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 3: html button with href

<form method="get" action="/page2">
    <button type="submit">Continue</button>
</form>

Tags:

Misc Example