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 Custom Radio Buttons</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> <div class="custom-control custom-radio"> <input type="radio" class="custom-control-input" name="customRadio" id="customRadio1"> <label class="custom-control-label" for="customRadio1">Custom radio</label> </div> <div class="custom-control custom-radio mt-2"> <input type="radio" class="custom-control-input" name="customRadio" id="customRadio2" checked> <label class="custom-control-label" for="customRadio2">Another custom radio</label> </div> </form> </div> </body> </html>