label small bootstrap 4 code example
Example 1: input with bootstrap
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control">
<small id="emailHelp" class="form-text text-muted">Hello, World</small>
</div>
</form>
Example 2: checkbox html bootstrap 4
<div class="form-check form-check-inline">
<input id="checkbox3" type="checkbox" checked="checked">
<label for="checkbox3">Checkbox checked</label>
</div>