FORM The <input> Element Types
- Text
- Radio
- Checkbox
- Submit
- Button
Important Information
- To make form firstly we will use form tag.
- For eg:- <form>......Form.......</form>
Syntax of Input types form is
< input type="checkbox" > Program
INPUT
<html> <head> <body> <form> <input type="text"><br> <input type="radio">Radio <br> <input type="checkbox">Checkbox <br> <input type="submit"> <br> <input type="button">Button</input><br> </form> </body> </html>
OUTPUT
![]()