I would like to make a shopping cart icon, and put a number inside it to go iterating according to the products that the customer places in the cart, but I could not do an example: OBs: HTML and CSS, the icon is font-awesome, I'm using Bootstrap 4
HTML
<divclass="content-carrinho d-flex">
<a href=""><span class="fa fa-shopping-cart" aria-hidden="true"></span></a>
</div>
CSS
.content-carrinho a {
padding-right: 40px;
}
.content-carrinho span{
color: white;
}