Bootstrap Card Codepen Code Example


Example 1: boostrap card

<div class="card" style="width: 18rem;">   <div class="card-body">     <h5 class="card-title">Card title</h5>     <h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>     <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="card-link">Card link</a>     <a href="#" class="card-link">Another link</a>   </div> </div>

Example 2: bootsrap card

<div class="card" style="width: 18rem;">   <img src="..." class="card-img-top" alt="...">   <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>

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?