HTMLify
form.html
Views: 686 | Author: priyanka
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <html> <head> <title>frame</title></head> <form> <body bgcolor="lightcyan"> Name:<input type="text" Name ="firstname"size= 30 maxlength= 50 placeholder="priyanka"<br><br> Father's Name:<input type ="text" Name= "secondname" size= maxlength =50 value =""><br><br> Address:<input type= "text" Name= "thirdname" size= 30 maxlength =100 value= ""><br><br> ID:<input type="text" name= "fourthname" size= 30 maxlength =50 value=""><br><br> Phone number:<input type="number" Name="n1" Value=""><br><br> <p> Enter password:<input type ="Password" Name ="Password" size= 20></p> <p>choose your spoken language:</p> <input type= "checkbox" Name= "c1" value ="Hindi" checked>Hindi<br> <input type= "checkbox" Name= "c2" value= "English">English<br> <p>specify your gender:</p> <input type= "radio" Name= "gender" value= "Male">Male<br> <input type= "radio" Name= "gender" value ="Female">Female<br> <p>Choose your right destination:</p> <select Name= "cities" size=4> <option selected >Chandigarh</option> <option >Kolkata</option> <option>Bhopal</option> <option>uttarpradesh</option> <option>chennai</option> <option>kerala</option> </select></form> <form> Remarks: <textarea row=10 cols=60 name="remarks"> </textarea><br><br> <input type='submit' value="submit"> <input type='reset' value="reset"> </form> </body> </html> |