Bootstrap5 Jumbotron
Jumbotron creates a large gray background box where you can place special content and information.
In Bootstrap 5, Jumbotron is no longer supported. However, we can achieve the same effect by using a <div>
element with some helper and color classes:
Tip: You can include HTML tags or Bootstrap elements within a Jumbotron.
Example
<div class="mt-4 p-5 bg-primary text-white rounded">
<h1>tutorialpro.org</h1>
<p>Learning is not just about technology, it's about dreams!!!</p>
</div>