JS

HTML Code Quiz - html tag text

1.

What is the correct HTML tag to create a multi-line text input with the default value "Type here"?

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

<text name="comment" rows="4" cols="50">Type here</text>

<p type="textarea" name="comment">Type here</p>

<div type="text" name="comment">Type here</div>

<textarea>Type here</textarea>

1 / 25

Next