I'm creating a Bootstrap website, but I've run into a problem that I can't solve even with the simplest HTML (the problem is the only element on the site)... I'm desperate:
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Association Capucine - Gagner contre la leucémie</title> </head> <body> <div class="d-flex justify-content-around"> <div class="p-2 bg-info">Flex item 1</div> <div class="p-2 bg-warning">Flex item 2</div> <div class="p-2 bg-primary">Flex item 3</div> </div> <main> </main> <footer> </footer> </body> </html>
Thanks in advance
You need to include Bootstrap CSS and Bootstrap JS.
See the code snippet below.