Deonna
asked 3 years ago

I am having a problem with the social media icons. I believe I am typing the code in correctly but something else might be wrong.
Here’s the code:
<section id=”social media” class=”bg-red”>
<h2>Follow Krishawn</h2>
<ul>
<li><a href=”#”><i class=”fab fa-twitter”></i></a></li>
<li><a href=”#”><i class=”fab fa-instagram”></i></a></li>
<li><a href=”#”><i class=”fab fa-snapchat”></i></a></li>
</ul>
</section>

1 Answers
DominicStaff
answered 3 years ago

Which product are you using?
I have checked your code and see that you are using the fontAwesome icon version 5, you can try the following code:

<section id=”social media” class=”bg-red”>
<h2>Follow Krishawn</h2>
<ul>
<li><a href=”#”><i class=”fa fa-twitter”></i></a></li>
<li><a href=”#”><i class=”fa fa-instagram”></i></a></li>
<li><a href=”#”><i class=”fa fa-snapchat”></i></a></li>
</ul>
</section>
Powered by DW Question & Answer Pro