how to make a button do something in html code example
Example 1: how to add buttons in html
<button type="button" onclick="alert('You pressed the button!')">Click me!</button>
Example 2: button functions html
<script>
function myFunction() {
alert("ALERT");
}
</script>
<button onclick="myFunction">Click</button>
Example 3: how to make a button in html
<!--Button Element-->
<button>This is a Button!</button>
<!--Button with a link-->
<a href="blah blah blah" target="_blank"><button>Button w/ Link!</button></a>
Example 4: html button action
A form with two submit buttons. The first submit button submits the form data to "submit_data.php", and the second submits to "send_data.php":
<form action="/submit_data.php" method="get">
<label>Name:</label>
<input type="text" id="uname" name="uname"><br><br>
<label>Age:</label>
<input type="text" id="uage" name="uage"><br><br>
<label>Address:</label>
<input type="text" id="uaddress" name="uaddress"><br><br>
<button type="submit">Submit</button>
<button type="submit" formaction="/send_data.php">Submit to another page</button>
</form>