screen_rotation
Copied to Clipboard
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap demo</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> </head> <body> <div class="container p-3 shadow-sm"> <h1>Bootstrap Dismiss Alerts</h1> <div class="alert alert-warning alert-dismissible fade show" role="alert"> <strong>Warning!</strong> This is Warning Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <div class="alert alert-secondary alert-dismissible fade show" role="alert"> <strong>Secondary!</strong> This is Secondary Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <div class="alert alert-success alert-dismissible fade show" role="alert"> <strong>Success!</strong> This is Success Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <div class="alert alert-danger alert-dismissible fade show" role="alert"> <strong>Danger!</strong> This is Danger Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <div class="alert alert-info alert-dismissible fade show" role="alert"> <strong>Info!</strong> This is Info Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <div class="alert alert-light alert-dismissible fade show" role="alert"> <strong>Light!</strong> This is Light Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <div class="alert alert-dark alert-dismissible fade show" role="alert"> <strong>Dark</strong>This is Dark Dismiss Alerts.. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> </div> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.min.js" integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa" crossorigin="anonymous"></script> </body> </html>