Would anyone be able to assist me in increasing the size of and separating these three icons that are close to each other using CSS3 in a single line? I am utilizing Bootstrap5 and Google Icons.
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
HTML code:
<div class="container">
<div class="row">
<div class="col d-flex justify-content-center">
<a href="{% url 'notification' %}" style="text-decoration: none;">
<span class="material-icons">notifications</span>
{% if unread_notifications %}
<span class="badge bg-secondary">{{unread_notifications}}</span>
{% endif %}
</a>
<a href="{% url 'Profile' user.id %}">
<span class="material-icons">person</span>
</a>
<a href="{% url 'Profile' user.id %}">
<span class="material-icons">logout</span>
</a>
</div>
</div>
</div>