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
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>
Please login or Register to submit your answer