Forum : HTML Forms
Brief description  about Online courses   join in Online courses
View Bharat C Bhagat PMP 's Profile

HTML Forms

I have been trying to run following code.

I do not understand as to why last line of the code is not getting executed.

<p>=================</p><br/>
<Form><b><u> Form Assignment </u></b></form>

<p>=================</p><br/>

<form> Select Destination </form>
<form> Select Destination from list </form>

<Form><select name="destination"</select></Form>
<option value="New Delhi">New Delhi</option>
<option value="Amsterdam">Amsterdam</option>
<option value="New York">New York</option>
<Option value="London">London</option>
<option value="Mumbai">Mumbai</option>
<option value="Banguluru">Banguluru</option>

<p>=================</p><br/>
<form><h3><u> Form CheckBox 2nd line Assignment </u></h3></form>
Asked by Bharat C Bhagat PMP | Feb 17, 2011 |  Reply now
Replies (2)
View bharat c bhagat-pmp 's Profile
Thank you Sir, Yes, I can do it succesfully with your code.

Regards,
Bharat C Bhagat
Feb 18, 2011
View teacher siliconindia 's Profile
Hi

Try this code you will get, don't use so many form

<p>=================</p><br/>
<b><u> Form Assignment </u></b>

<p>=================</p><br/>

Select Destination
Select Destination from list

<Form>

<select name="destination">


<option value="New Delhi">New Delhi</option>
<option value="Amsterdam">Amsterdam</option>
<option value="New York">New York</option>
<Option value="London">London</option>
<option value="Mumbai">Mumbai</option>
<option value="Banguluru">Banguluru</option>
</select>



</form>


<h3><u> Form CheckBox 2nd line Assignment </u></h3>

Regards
Feb 17, 2011