I use Font Awesome and 4/5 icons are show correct, but last one (stackoverflow icon, does not show):
HTML:
<ul>
<li><a href="#"><i class="xcon-facebook"></i></a></li>
<li><a href="#"><i class="xcon-twitter"></i></a></li>
<li><a href="#"><i class="xcon-linkedin"></i></a></li>
<li><a href="#"><i class="xcon-instagram"></i></a></li>
<li><a href="#"><i class="xcon-stackoverflow"></i></a></li>
</ul>
CSS:
.xcon-facebook:before { content: '\f09a'; } /* '' */
.xcon-twitter:before { content: '\f099'; } /* '' */
.xcon-linkedin:before { content: '\f0e1'; } /* '' */
.xcon-instagram:before { content: '\f16d'; } /* '' */
.xcon-stackoverflow:before { content: '\f16c'; } /* '' */
How they look:
So i tried to change this line, like this:
.xcon-stackoverflow:before { content: '\f16c'; font-family: 'Font Awesome 5 Free';} /* '' */
Without change.