JS

HTML Code Quiz - input field type placeholder

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">