> For the complete documentation index, see [llms.txt](https://docs-drift.g-axon.work/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-drift.g-axon.work/components/jumbotron.md).

# Jumbotron

### Jumbotron

{% tabs %}
{% tab title="Basic" %}
![](/files/-LuqDAK9_um43aVUSU0t)
{% endtab %}

{% tab title="Source Code" %}

```markup
<!-- Jumbotron -->
<div class="jumbotron mb-0">
    <h1 class="display-4">Hello, world!</h1>
    <p class="lead">This is a simple hero unit, a simple jumbotron-style component
        for calling extra
        attention to featured content or information.</p>
    <hr class="my-3">
    <p class="mb-4">It uses utility classes for typography and spacing to space
        content out within the
        larger container.</p>
    <a class="btn btn-primary" href="javascript:void(0)" role="button">Learn
        more</a>
</div>
<!-- /jumbotron -->
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Fluid" %}
![](/files/-LuqGqhVRPynGNtc-1zl)
{% endtab %}

{% tab title="Source Code" %}

```markup
<!-- Jumbotron -->
<div class="jumbotron jumbotron-fluid mb-0">
    <div class="container">
        <h1 class="display-4">Fluid jumbotron</h1>
        <p class="lead">This is a modified jumbotron that occupies the entire
            horizontal space of its
            parent.</p>
    </div>
</div>
<!-- /jumbotron -->
```

{% endtab %}
{% endtabs %}
