Posts

Showing posts from February, 2018

Form html

Image
HTML Forms are required when you want to collect some data from the site visitor. For example, during user registration, you would like to collect information such as name, email address, credit card, etc. Adding a simple search box to your website or you need to create a more complicated application. Html gives you the platform to collect the data from your users. The HTML <form> tag is used to create an HTML form and it has following syntax − <form action = "Script URL" method = "GET|POST"> form elements like input, textarea etc. </form>      Form Controls There are different types of form controls that you can use to collect data using HTML form − Text Input Controls Checkboxes Controls Radio Box Controls Select Box Controls File Select boxes Clickable Buttons Submit and Reset Button For example:- <head>     <title>table form</title></head>     <body>     <form>         <t