HTML FORMS

 HTML FORMS:-

1)forms is communication between user to web page

2) all form used to created inside the <form> tag3) there are following control used in form. 

  1. textbox control 

  2. password box control

  3. redio button control 

  4. checkbox control

  5. text area control 

  6. drop down list control

  7. button control 



<HTML>

<BODY>



<FORM> 


ENTER YOUR NAME 

<BR>

<input type="text">

<BR> 

enter your password

<BR>

<input type="Password">

<BR>

select your gender

<BR>

Male-<input type="radio"> ( single selection) 

<BR>

select your course 

<BR>

MBA-<input type="checkbox">

MCA-<input type="checkbox">

<BR>

select your city

<BR>

<select>


<option>Nagpur </option>

<option> pune </option>

<option> Mumbai </option>


</select>

<BR>

write your query:-

<BR>

<textarea> comment now </textarea>

<BR>

<input type="button" value="submit">

<BR>    ( or )

<button> log in </button>



</FORM>


Comments

Popular posts from this blog

condition management IF, ELSE, ELSEIF

HTML NOTES