Advertisements
Advertisements
Question
Customer Analytics firm needs to design a survey form as shown below:
Write suitable HTML code to design it.
Short Note
Solution
HTML code to design survey form:
<form>
Name: <input type="text"><br>
City: <br>
<select size=3>
<option>New Delhi</option>
<option>Chennai</option>
<option>Hydrabad</option>
</select><br>
Hobby: <br>
Reading<input type="checkbox">
Writing<input type="checkbox"><br>
Singing<input type="checkbox">
Dancing<input type="checkbox">
</form>
shaalaa.com
Notes
1 Mark each for correct usage of each tag <form>, <input type=text>, <select>..<option>,<input type="checkbox">
HTML Forms
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Trace the output of following html code.
‹!DOCTYPE html›
‹html›
‹head›
‹title›Heading tags‹/title›
‹/head›
‹body›
‹h1 align=left›Information Technology‹/h1›
‹hr›
‹h2 align=center›XI Standard‹/h2›
‹h3 align=right›Division‹/h3›
‹/body›
‹/html›
______ method stores the input data in the request body of the clients HTTP request.
The no. of parameters used by fclose() function.
How PHP files can be accessed?
Define for Form Handling method in PHP.
What is a HTML form?
Differentiate check box and Radio button.
Write short notes on File handling.
Explain Form Handling methods.
Explain the process File handling.