| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/5.2.3/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
- <style>
- .box{
- width: 600px;
- margin:0 auto;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <table class="table table-striped">
- <thead>
- <tr class="table-primary">
- <th scope="col">#</th>
- <th scope="col">First</th>
- <th scope="col">Last</th>
- <th scope="col">Handle</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">1</th>
- <td>Mark</td>
- <td>Otto</td>
- <td>@mdo</td>
- </tr>
- <tr>
- <th scope="row">2</th>
- <td>Jacob</td>
- <td>Thornton</td>
- <td>@fat</td>
- </tr>
- <tr>
- <th scope="row">3</th>
- <td colspan="2">Larry the Bird</td>
- <td>@twitter</td>
- </tr>
- </tbody>
- </table>
- <input type="range" class="form-range" id="customRange1">
- <button type="button" class="btn btn-primary">Primary</button>
- <button type="button" class="btn btn-secondary">Secondary</button>
- <button type="button" class="btn btn-success">Success</button>
- <button type="button" class="btn btn-danger">Danger</button>
- <button type="button" class="btn btn-warning">Warning</button>
- <button type="button" class="btn btn-info">Info</button>
- <button type="button" class="btn btn-light">Light</button>
- <button type="button" class="btn btn-dark">Dark</button>
- <button type="button" class="btn btn-link">Link</button>
- <input type="checkbox" checked="false">
- </div>
- <script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/5.2.3/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
- </body>
- </html>
|