How to Create Checkbox in html
HTML Checkbox is input type That allows user to select one or more options from the list.Checkbox is commonly use in forms when multiple selections are allowed.
Checkbox input type creates a small square box that users can check ( ✓) or uncheck. users can select multiple checkboxes at the same time.
Syntax:-
<input type="checkbox" name="option" value="value">
How to Create Checkbox in html
program
How to Create Checkbox in html
Explain Program
Step 1 ]
<!Doctype html>
- <!doctype html> always be the first line of any HTML document.
<!Doctype html>
- <!doctype html> always be the first line of any HTML document.
Step 2 ]
<html> and </html>
html is the root element.
<html> and </html>
html is the root element.
Step 3 ]
<body> and </body>
body is main content area.
All visible content inside to the <body> tagStep 4]
<body> and </body>
body is main content area.
All visible content inside to the <body> tag
No comments:
Post a Comment