How to create a button in HTML

Buttons are commonly used to submit and send forms. Creating a similar button which allows your visitors to send their form by a single click can be realized by creating a ‘submit’ type input field. Please find below a submit button example:

<form action="#">
<input type="submit" value="Submit">
</form>


Was this useful?