Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 4 Inline Checkboxes and Radios</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 20px; } </style> </head> <body> <div class="bs-example"> <form> <h4>Choose your favorite sports</h4> <div class="form-group"> <label class="mr-3"> <input type="checkbox" class="mr-1" name="sports"> Cricket </label> <label class="mr-3"> <input type="checkbox" class="mr-1" name="sports"> Football </label> <label class="mr-3"> <input type="checkbox" class="mr-1" name="sports"> Tennis </label> </div> <hr> <h4>Choose your gender</h4> <div class="form-group"> <label class="mr-3"> <input type="radio" class="mr-1" name="gender"> Male </label> <label class="mr-3"> <input type="radio" class="mr-1" name="gender"> Female </label> </div> </form> </div> </body> </html>