Bootstrap Check and Radio Buttons
Bootstrap provides a set of classes that can be used to create custom check and radio buttons that are more visually appealing and customizable than the default form elements.
Syntax
For check and radio buttons, the syntax is similar. Here's an example:
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck">
<label class="form-check-label" for="defaultCheck">
Default check
</label>
</div>
<div class="form-check">
<input class="-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1" checked>
<label class="form-check-label" for="exampleRadios1">
Default radio
</label>
</div>