answer as soon as possible
NO SPAM ANSWERS PLZ
⚠️NO CHEATING ⚠️
Answers
A} the form element used in 1 is text and the form element used in 2 is textarea
B}the form element textarea has been used in 2 to input the address because it can accept long and descriptive data.
C}<html>
<body>
<form method="get">
Choose setting type:
<input type="radio" name"apex" value="Do Not Disturb">
<input type="radio" name="apex" value="VIBRATE">
<input type="radio" name="apex" value="Activate">
</form>
</body>
</html>
D} the form element used in label 3 is radio button. This form element is used when there are multiple options available to the user and the user must select only one.
the form element used in label 4 is checkbox. This form element is used when there are multiple options available to the user and the user can select multiple number of options.
E} We can highlight the item using the selected attribute.
For example
<html>
<body>
<form method="get">
<select>
<option selected="Brainly">Brainly</option>
<option>Meritnation</option>
</select>
</form>
</body>
</html>
OR
A} A form in a webpage allows the user to enter data and then send this data to a processing agent for its processing. A form can be added to a webpage using <form> tag which acts as a container for all form elements.
B} A form consists of the data that the user has to send for processing
C}<Form> tag is used. It is a container tag
D} Method attribute of form can take 2 values. These are: get and post
E} Submit button in a form is used to submit the form data to the processing agent for interpretation of the data while the reset button in a form brings all the elements to their initial values