Checkbox Tag

Checkbox in a form
messywebdev avatar
messywebdev
plain_text
02/02/2023 3:09 PM
332 B
18
Indexable
<h2>Choose your interests:</h2>
<input type="checkbox" id="tech">
<label for="tech">Tech</label><br>
  
<input type="checkbox" id="sports">
<label for="sports">Sports</label><br>

<input type="checkbox" id="books">
<label for="books">Books</label>
Editor is loading...