how to make a card using bootstrap

Solutions on MaxInterview for how to make a card using bootstrap by the best coders in the world

showing results for - "how to make a card using bootstrap"
Jacopo
24 Apr 2016
1<div class="card" style="width: 18rem;">
2  <img src="..." class="card-img-top" alt="...">
3  <div class="card-body">
4    <h5 class="card-title">Card title</h5>
5    <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>
6    <a href="#" class="btn btn-primary">Go somewhere</a>
7  </div>
8</div>