screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <div class="container mt-4"> <h3>Bootstrap Enable Disable Radio Button</h3> <!-- Disabled radio button --> <div class="form-check"> <input class="form-check-input" type="radio" name="color" id="red" value="red" disabled> <label class="form-check-label" for="red"> Red </label> </div> <!-- Enabled radio button --> <div class="form-check"> <input class="form-check-input" type="radio" name="color" id="blue" value="blue"> <label class="form-check-label" for="blue"> Blue </label> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"></script> </body> </html>