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
Be the first to start discuss.
Q. How more than one option can be selected in drop down?
Q. Is it possible to insert a table within another table?
Q. For grouping together one or more <h1> to <h6> element what element is used?
Q. Which is the largest heading tag?
Q. Which of the following is not a browser ?
Q. When is the content of a table shown?
Q. With regards to e-mail addresses:
Q. The first tag inside <TABLE> tag is _______
Q. Which of the following is incorrect regarding Logical styles?
Discusssion
Login to discuss.