Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 518 Bytes

card.md

File metadata and controls

32 lines (17 loc) · 518 Bytes
description
Card in NextGenCSS!!!

Card

Card

This creates a basic Card component in HTML and CSS

Use this component by adding .cardclass in element....

The .card-title class to give title to the card

And .card-body class to write body to the card

Examples

<div class="card">
    <h3 class="card-title">Hello</h3>
    <p class="card-body">Card Body</p>
</div>

OutPut