8. ____ tag is used to create a text box with multiple line
Answers
Answer:
<textarea rows="2" cols="20"> </textarea>
Explanation:
<textarea rows="2" cols="20">
You can use this tag for multiple lines in HTML.
</textarea>
Answer:
TEXTAREA tag is used to create a text box with multiple line
Explanation:
A part of a page called an HTML form contains regular content, markup, special components called controls (such as checkboxes, radio buttons, menus, and so forth), as well as labels for the controls themselves. Typically, users "finish" a form by changing its controls (typing text, choosing options from a menu, etc.) before sending it to a representative to be processed (e.g., to a Web server, to a mail server, etc.)
Here is a straightforward form with labels, radio options, and push buttons (to submit or reset the form):
Action="http://somesite.com/prog/adduser" method="post" on the form
"Firstname" LABEL in P
/LABEL> INPUT type="text" id="firstname">BR> LABEL for="lastname">First name:
/LABEL> INPUT type="text" id="lastname">BR> LABEL for="email">
Email: /LABEL> INPUT type="text" id="email">BR> INPUT type="radio" name="sex" value="Male">INPUT type="radio" name="sex" value="Male"> INPUT type="radio" name="sex" value="Female">MaleBR> FemaleBR> INPUT type="submit" value="Send"> INPUT type="reset">
See more:
https://brainly.in/question/8266161
#SPJ3