Checkbox Tag

Checkbox in a form
 avatar
messywebdev
plain_text
2 years ago
247 B
6
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...