Cards: Bootstrap's card component is a versatile container that can be used to display all kinds of content, such as images, text, and buttons, in a flexible and responsive way. Here's an example:
html
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="https://via.placeholder.com/286x180.png?text=Card+image+cap" alt="Card image cap">
<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">Go somewhere</a>
</div>
</div>
```
This code creates a card with an image, title, text, and button using Bootstrap's card classes.
No comments:
Post a Comment