making a button work 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: 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>