bootstrap 5 card

Solutions on MaxInterview for bootstrap 5 card by the best coders in the world

showing results for - "bootstrap 5 card"
Mattia
06 Nov 2018
1  <div class="card" style="width:400px">
2    <img class="card-img-top" src="img_avatar1.png" alt="Card image" style="width:100%">
3    <div class="card-body">
4      <h4 class="card-title">John Doe</h4>
5      <p class="card-text">Some example text some example text. John Doe is an architect and engineer</p>
6      <a href="#" class="btn btn-primary">See Profile</a>
7    </div>
8  </div>
Carlton
06 Apr 2017
1<div class="card" style="width: 18rem;">
2  <img class="card-img-top" src="..." alt="Card image cap">
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>
Francisco
15 Oct 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
6      title and make up the bulk of the card's content.</p>
7    <a href="#" class="btn btn-primary">Go somewhere</a>
8  </div>
9</div>
Domenico
11 Nov 2018
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>
Lilly
31 Jan 2021
1<div class="card" style="width: 18rem;">
2  <img src="..." class="card-img-top" alt="...">
3  <div class="card-body">
4    <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>
5  </div>
6</div>
Greta
24 Jan 2019
1<div class="card card-inverse">
2  <img class="card-img" src="..." alt="Card image">
3  <div class="card-img-overlay">
4    <h4 class="card-title">Card title</h4>
5    <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
6    <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
7  </div>
8</div>
similar questions
queries leading to this page
bootstrap 5 card