I need assistance in converting a PSD file into two cards. The content within the card should resemble this. Can anyone provide guidance on how to achieve this?
Below is the code I am currently working with:
.container {
margin-top: 10px;
}
.card {
display: flex;
justify-content: center;
align-items: center
}
<div class="container">
<div class="col-lg-12">
<div class="row">
<div class="col-md-6">
<div class="card height-2">
<i class="material-icons">gavel</i>
<h5>Legislacion</h5>
</div>
</div>
<div class="col-md-6">
<div class="card height-2">
<i class="material-icons">today</i>
<h5>Calendar</h5>
</div>
</div>
</div>
</div>
</div>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">