Forum : Forms in html
Brief description  about Online courses   join in Online courses
View Thangam  Nayagi 's Profile

Forms in html

sir,

with drop down menu in forms,html i wanted to include 2 drop down menu for eg. In Gender: boy,girl,all and the other origin:american,african,hebrew,greek and i gave the following code but i got the first drop down menu correctly but not the origin menu....
<p> <font size=5 color="green"><b>American Baby's Baby Name Finder</b></font>

<form> Gender : <select name=Gender>
<option value="Boy">Boy</option>
<option value="girl">Girl</option>
<option value="All">All</option>
</form></br></br>


<form> Origin : <select name=Gender>
<option value="African">African</option>
<option value="American">American</option>
<option value="Christian">Christian</option>
<option value="Greek">Greek</option>
<option value="Hebrew">Hebrew</option>
</form>
<br/></p>

please what is the mistake in this code and help me rectify it.

regards
thangam
Asked by Thangam Nayagi | Jan 2, 2011 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
Hi

Please check this code

<form> Gender : <select name=Gender>
<option value="Boy">Boy</option>
<option value="girl">Girl</option>
<option value="All">All</option>
</select>

</form></br></br>


<form> Origin : <select name=Gender>
<option value="African">African</option>
<option value="American">American</option>
<option value="Christian">Christian</option>
<option value="Greek">Greek</option>
<option value="Hebrew">Hebrew</option>
</select>

</form>

Regards
Jan 4, 2011