Another example on making a form using HTML.
<html> <head> <title> BloggingSimplified </title> </head> <body bgcolor="green"> <form> <table> <tr>First Name:<input type="text"> <br></tr> <tr>Last Name:<input type="text"> <br></tr> <tr>Email Address:<input type="text"> <br></tr> <tr>Gender:<br></tr> <input type="radio" name="g" value="off">Male<br> <input type="radio" name="g" value="off">Female <br> Check the option:<br> <tr>I have a bike <input type="checkbox"><br></tr> <tr>I have a car <input type="checkbox"><br></tr> <tr>I have a airplane <input type="checkbox"><br></tr> <tr>Upload File: <input type="file"></tr><br> <tr>Write Comment <br><textarea cols="20" rows="5"></textarea></tr><br> <br> <tr><input type="reset" name="s"> <input type="submit" name="s"><br></tr> </table> </form> </body> </html>