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
संबंधित प्रश्न
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›
In which input field only one option Can be selected?
In HTML form <input type=”text”> is used to ______.
What does fopen() function do in PHP?
What is Form Validation in PHP?
Write the features Form Handling.
Write short notes on File handling.
Explain Form Handling methods.
Explain the process File handling.
Explain concepts of HTTP Uploading process.