JS

Beginner HTML Topics - html a checkbox

18.

How should you structure the label for a checkbox in HTML?

<input type="checkbox" label="Check this box">

<checkbox>Check this box</checkbox>

<label>Check this box</label>

<label for="checkbox">Check this box</label>