HTML BUTTON ELEMENT EXAMPLE
Run
<!DOCTYPE HTML>
<html>
    <head>
        <title>
            Using the BUTTON element
        </title>
    </head>
    <body>
        <p>This is simple submit button used as hyperlink:</p>
        <a href="https://studytonight.com" target="_blank"><button>SUBMIT</button></a>
        <HR/>
        <p>Changing the button text</p>
        <button style="color:#6a67ce;font-size:20px;"><b>SUBMIT</b></button>
    </body>
</html>