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>
Correct: D
The correct way to add a button with the type "button" and the value "Button" is by using the <button> element with the attributes type="button" and the inner HTML set to "Button": <button type="button">Button</button>