JS

HTML Code Quiz - Add a button

2.

How do you add a button with the type "button" and the value "Button" in HTML?

<form action="#">
  ________
</form>

<button type="input" text="Button">Button</button>

<input type="button" "Button" />

<button value="Button">Button</button>

<button type="button">Button</button>