Menu
 

Cards

The Qoduby template supports Bootstrap card elements as standard. Only the template-specific views have been improved.

You can take a look at the Bootstrap card elements documentation if you want. https://getbootstrap.com/docs/5.3/components/card/

Standard
...
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="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>
										
									
Body
This is some text within a card body.
										
<div class="card">
  <div class="card-body">
    This is some text within a card body.
  </div>
</div>
										
									
Body Shadow
This is some text within a card body.
										
<div class="card shadow-card">
  <div class="card-body">
    This is some text within a card body.
  </div>
</div>
										
									
Body Nested Shadow & Shadow Large

Lorem ipsum dolor sit amet.

Lorem ipsum dolor sit amet.
										
<div class="card shadow-card p6">
  <p>Lorem ipsum dolor sit amet.</p>
  <div class="card shadow-card shadow-lg p6">
    Lorem ipsum dolor sit amet.
  </div>
</div>
										
									
2023© Qoduby