Placeholders
Use loading placeholders for your components or pages to indicate something may still be loading.
Placeholders can be used to enhance the experience of your application. They’re built only with HTML and CSS, meaning you don’t need any JavaScript to create them. You will, however, need some custom JavaScript to toggle their visibility. Their appearance, color, and sizing can be easily customized with our utility classes.
Card title
Some quick example text to build on the card title and make up the bulk of the card's content.
Go somewhere
<div class="d-flex gap-3">
<div class="card" style="width: 18rem;">
<img src="assets/imgs/other/card.png" class="card-img-top" alt="infinia" />
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary text-white">Go somewhere</a>
</div>
</div>
<div class="card" aria-hidden="true" style="width: 18rem;">
<img src="assets/imgs/other/card.png" class="card-img-top" alt="infinia" />
<div class="card-body">
<h5 class="card-title placeholder-glow">
<span class="placeholder col-6"></span>
</h5>
<p class="card-text placeholder-glow">
<span class="placeholder col-7"></span>
<span class="placeholder col-4"></span>
<span class="placeholder col-4"></span>
<span class="placeholder col-6"></span>
<span class="placeholder col-8"></span>
</p>
<a class="btn btn-primary disabled placeholder col-6 text-white" aria-disabled="true"></a>
</div>
</div>
</div>