Struggling with a tutorial on Bootstrap that walks me through adding a link from the website to my file, but for some reason, the code within the body tag (the div element) is not displaying as expected. Any thoughts on what might be causing this issue?
<!DOCTYPE html>
<html lang ="en">
<head>
<title>Hello!</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.3/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
</head>
<body>
Hello, world!
<div class="alert alert-success" role="alert">
A simple success alert—check it out!
</div>
</body>
</html>