Advertisements
Advertisements
Question
Customer Analytics firm needs to design a survey form as shown below:

Write suitable HTML code to design it.
Short/Brief Note
Advertisements
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">
Is there an error in this question or solution?
