Examining my bootstrap 4 code, you'll notice something curious at the end. It seems that there's an issue with why this particular section is not appearing below the video as expected.
Despite numerous attempts to troubleshoot, I'm still unable to determine the cause of this error. Any assistance in resolving this matter would be extremely helpful!
// font-family: 'Paytone One', sans-serif;
font-family: 'Questrial', sans-serif; */
.questrial {
font-family: 'Questrial', sans-serif;
}
// Several CSS styles here...
<!DOCTYPE html>
<html lang="en">
<head>
// HTML head content...
</head>
<body>
<div class="container heroTextBack">
// Main page content here...
</div>
<div class="container">
<div class="row">
<div class="col-12">I'm wondering why this isn't showing up beneath the video.</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.bundle.min.js" integrity="sha384-somehashcode" crossorigin="anonymous"></script>
</body>
</html>