Bootstrap is nu enkel een CSS bestand en een JS bestand, dus je kan:
We gaan aan de slag met Bootstrap!
hello-bootstrap
.index.html
.css
met daarin en style.css
bestand.<head>
element van jouw index.html, voeg een <link>
tag toe die verwijst naar het css/style.css
bestand.<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <!-- My own Custom CSS --> <link rel="stylesheet" href="css/style.css"> <title>Hello, Bootstrap!</title> </head> <body class="text-center"> <h1>Hello, Bootstrap!</h1> <p>I just finished installing Bootstrap!</p> <p>I can use the CSS class <code>text-center</code> on body to center everything </p> <img src="https://picsum.photos/256" class="rounded-circle" alt="" srcset=""> <p>With the <code>rounded-circle</code> CSS class on my img I made it round! </p> <p>I'm still free to use my own <span id="silly">custom CSS</span> for fine-tuned adjustments 😎</p> <!-- Optional JavaScript; choose one of the two! --> <!-- Option 1: Bootstrap Bundle with Popper --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> <!-- Option 2: Separate Popper and Bootstrap JS --> <!-- <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script> --> </body> </html>
#silly { font-family: "Comic Sans MS", "Comic Sans", cursive; font-weight: 800; color: rebeccapurple; font-style: italic; }