Hello World
We love CSS<div class="card">
We love CSS
</div>
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 thisThe width and color of the card were changed using custom classes
<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>
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
So implementing a card was as easy as that.