Following are html code to show above form page.
<html> <head><title></title></head> <body bgcolor="aqua"> <font face="arial" color="red"> Enter your information <form> <font color="red"><h2>Text Field</h2></font> Your Name: <input type="text" /><br> Your Father's Name: <input type="text" /><br> Your Email Address: <input type="text" /><br> Your Contact Number:<input type="text" /><br> Your Age: <input type="text" /><br> <font color="blue"><h2>Password Field</h2></font> Password: <input type="password" /><br> <font color="yellow"><h2>Radio Button</h2></font> Gender: <input type="radio" name="sex" />Male <input type="radio" name="sex" />Female <br> <font color="green"><h2>Select Field</h2><font> Your Gender: <select><option>Female</option><option>Male</option></select><br> <font color="pink"><h2>Checkboxes</h2></font> <input type="checkbox" /> I have a bike<br> <input type="checkbox" /> I have a car<br><br> <input type="SUBMIT" value="Create" /> </font> </form> </body>
</html>

No comments:
Post a Comment