Home | Computer Science

<
Form

Defination

The <form> tag is used to create an HTML form for user input.


FORM The <input> Element Types
Important Information
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