</div>
{% endexample %}
+Lists can be added to a card by adding a list group.
+
{% example html %}
<div class="card">
<ul class="list-group list-group-flush">
</div>
{% endexample %}
+`.card-img-top` places an image to the top of the card. With `.card-text`, text can be added to the card. Text within `.card-text` can also be styled with the standard HTML tags.
+
{% example html %}
<div class="card">
<img class="card-img-top" data-src="holder.js/100px180/?text=Image cap" alt="Card image cap">
</div>
{% endexample %}
+Card titles are used by adding `.card-title` to a `<h*>` tag. In the same way, links are added and placed next to each other by adding `.card-link` to a `<a>` tag.
+
{% example html %}
<div class="card card-block">
<h4 class="card-title">Card title</h4>
</div>
{% endexample %}
+Subtitles are used by adding a `.card-subtitle` to a `<h*>` tag. If the `.card-title` and the `.card-subtitle` items are placed in a `.card-block` item, the card title and subtitle are aligned nicely.
+
+The multiple content types can easily be combined to create the card you need. See below for an example.
+
{% example html %}
<div class="card">
<div class="card-block">
</div>
{% endexample %}
+Card headers can be styled by adding `.card-header` to `<h*>` elements.
+
{% example html %}
<div class="card">
<h3 class="card-header">Featured</h3>