Check Box
It is simplest component which is used particularly whemn we used to make selection of serveral options.
Syntx
<input type='checkbox' name='check' value='value of checkbox'>
Example
Output
AppleIt is simplest component which is used particularly whemn we used to make selection of serveral options.
Syntx
<input type='checkbox' name='check' value='value of checkbox'>
Example
<html> <head> <title> HTML checkbox </title> </head> <body> <form name='form1'> <input type='checkbox' name='check' value='apple'> <input type='checkbox' name='check' value='orange'> </form> </body> </html> |
Output
0 comments:
Post a Comment