I am new to HTML and CSS programming. I have a basic line of code and when I try to integrate bootstrap, the button doesn't reflect the added style from the stylesheet.
As a result, the button isn't displaying the expected style, and I'm wondering what mistake I might be making?
<html>
<head>
<script src="bootstrap.min.js"></script>
<title>Name of the website</title>
</head>
<body>
<p>This is an example of a paragraph.</p>
<p>¡Hello world!</p>
<button type="button" class="btn btn-danger">Danger daw!</button>
</body>
</html>