Match the following.
1 checked
2 ctextarea>
tag
3cinput type="submit">
<input type="text">
5 value
(a) accepts the input in one line
(b) specifies the value for the field to be stored
(c) makes a radio button pre-selected
(d) displays a command button
(e) fields that display several text lines at a time
Answers
Answered by
1
Answer:
EThe HTML <input> element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The <input> element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes.
<label for="name">Name (4 to 8 characters):</label>
<input type="text" id="name" name="name" required
minlength="4" maxlength="8" size="10">
xplanation:
Similar questions