Home Tutorials HTML Tutorial Radio Buttons and Checkboxes
Radio Buttons and Checkboxes

Radio Buttons and Checkboxes


28. Radio Buttons and Checkboxes

Radio buttons allow a single choice from a group, while checkboxes allow multiple selections. Both are common form controls in HTML.

Syntax

<input type="radio" name="gender">
<input type="checkbox" name="skill">

Example

<form>
    <input type="radio" name="course"> HTML
    <input type="radio" name="course"> CSS<br>
    <input type="checkbox"> Laptop
    <input type="checkbox"> Internet
</form>

Output

Two radio options and two checkboxes appear.
Example

🏋️ Test Yourself With Exercises

Take our quiz on Radio Buttons and Checkboxes to test your knowledge.

Browse Quizzes »