19_bootrap.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/5.2.3/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
  8. <style>
  9. .box{
  10. width: 600px;
  11. margin:0 auto;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="box">
  17. <table class="table table-striped">
  18. <thead>
  19. <tr class="table-primary">
  20. <th scope="col">#</th>
  21. <th scope="col">First</th>
  22. <th scope="col">Last</th>
  23. <th scope="col">Handle</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr>
  28. <th scope="row">1</th>
  29. <td>Mark</td>
  30. <td>Otto</td>
  31. <td>@mdo</td>
  32. </tr>
  33. <tr>
  34. <th scope="row">2</th>
  35. <td>Jacob</td>
  36. <td>Thornton</td>
  37. <td>@fat</td>
  38. </tr>
  39. <tr>
  40. <th scope="row">3</th>
  41. <td colspan="2">Larry the Bird</td>
  42. <td>@twitter</td>
  43. </tr>
  44. </tbody>
  45. </table>
  46. <input type="range" class="form-range" id="customRange1">
  47. <button type="button" class="btn btn-primary">Primary</button>
  48. <button type="button" class="btn btn-secondary">Secondary</button>
  49. <button type="button" class="btn btn-success">Success</button>
  50. <button type="button" class="btn btn-danger">Danger</button>
  51. <button type="button" class="btn btn-warning">Warning</button>
  52. <button type="button" class="btn btn-info">Info</button>
  53. <button type="button" class="btn btn-light">Light</button>
  54. <button type="button" class="btn btn-dark">Dark</button>
  55. <button type="button" class="btn btn-link">Link</button>
  56. <input type="checkbox" checked="false">
  57. </div>
  58. <script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/5.2.3/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
  59. </body>
  60. </html>