Home / Programming MCQs / HTML MCQs / Question
R
Q. Which tag is used to create an HTML form for user input?
The <form> tag is used to create an HTML form for user input. The <form> element can contain one or more of the following form elements: <input> <textarea> <button> <select> <option> <optgroup> <fieldset> <label> <output> Example: <form action="/action_page.php" method="get"> <input type="checkbox" name="vehicle1" value="Bike"> <label for="vehicle1"> I have a bike</label><br> <input type="checkbox" name="vehicle2" value="Car"> <label for="vehicle2"> I have a car</label><br> <input type="checkbox" name="vehicle3" value="Boat" checked> <label for="vehicle3"> I have a boat</label><br><br> <input type="submit" value="Submit"> </form>
You must be Logged in to update hint/solution
How can you make a numbered list?
Which attribute is not used on new forms?
What can’t be the value of a quality attribute?
Which of the following tag is used for inserting the largest heading in HTML?
Which element contains major navigational block?
Which attribute allows to show an image while downloading a video?
Which element specifies a list of pre-defined options for an input element?
Which of the following is correct HTML for inserting an image?
Discusssion
Login to discuss.