Cards provided by fresh ui looks something like this:

Hello World

We love CSS
Here is the code for creating a card using fresh ui css.
<div class="card">
We love CSS
</div>

Note:
The width and color of the card were changed using custom classes
You can also put an image inside the card like this
<div class="card">
We love CSS
<br/>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/CSS.3.svg/1200px-CSS.3.svg.png" height="50" alt="Image of css" />
</div>

The above code outputs the following output
We love CSS
Image of css
So implementing a card was as easy as that.