Advertisements
Advertisements
प्रश्न
Customer Analytics firm needs to design a survey form as shown below:
Write suitable HTML code to design it.
टीपा लिहा
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
When you use the $_GET variable to collect data, the data is visible to ______.
In which input field only one option Can be selected?
How PHP files can be accessed?
Write Syntax of Text box in HTML,
What is a HTML form?
Write any two rules for input HTML.
Write the purpose Get method and Post method.
Differentiate Get and Post Method.
Discuss in detail about HTML form controls.
Explain the concept of Submit and Reset buttons in HTML forms.