As a novice web developer, I am currently utilizing Bootstrap 4 in my project.
Here is the code snippet I have created:
.footer-menu a{
color: #2D2D2D;
font-size: 1em;
}
.copyright{
color: #D1D1D1;
font-size: 0.9em;
}
<footer>
<div class="container">
<div class="row">
<div class="col-12">
<div class="d-md-flex flex-row justify-content-between text-center text-md-left footer-menu">
<a href="#" class="d-block"><img src='my logo.jpg'></a>
<a href="#" class="d-block">Oferta</a>
<a href="#" class="d-block">O nas</a>
<a href="#" class="d-block">Kontakt</a>
<a href="#" class="d-block">Cennik</a>
<a href="#" class="d-block">Referencje</a>
<a href="#" class="d-block">Aktualności</a>
</div>
</div>
</div>
</div>
While this setup is functional, I am now looking to enhance it by adding icons between my menu items (such as oferta, o nas, kontakt, cennik, referencje, aktualnośći): https://ibb.co/7RZmSsz (red round).
What would be the best approach to achieve this?