3.
How would you add an input field with the type "email" and the placeholder "Enter your email"?
<form action="#">
___________
</form>
<input type="email" placeholder="email">
<input type="text" placeholder="Enter your email">
<input type="email" value="Enter your email">
<input type="email" placeholder="Enter your email">
Correct: D
Option <input type="email" placeholder="Enter your email"> is the correct answer because it uses the correct HTML code to add an input field with the type "email" and sets the placeholder text to "Enter your email".