DEV Community

Cover image for Link in Bio Problems
Felix Imbanga
Felix Imbanga

Posted on

Link in Bio Problems

I finished my Link in bio assignment a few days ago, I had not yet published on render yet but when I logged back in to my codespace and activated the port and viewed the website my social links weren't working. The pictures of the social icons were there but they weren't directing anywhere. I got some advice from on of my instructors to edit some code however the links still weren't working.

This was the code:

<a href="https://github.com/Feelo31" target="_blank">
    <i class="fa-brands fa-github"></i>
    Github
</a>
<a href="https://www.linkedin.com/in/feelo31/" 
     target="_blank"> 
    <i class="fa-brands fa-linkedin"></i>
    Linkedin
</a>
<a href="https://www.instagram.com/feelo03/" 
     target="_blank">
    <i class="fa-brands fa-instagram"></i>
    Instagram
</a>
<a href="https://twitter.com/Feelo31_03" target="_blank">
    <i class="fa-brands fa-twitter"></i>
    Twitter
</a>
<a href="https://www.facebook.com/felix.godia/" 
     target="_blank">
    <i class="fa-brands fa-facebook"></i>
    Facebook
</a>
Enter fullscreen mode Exit fullscreen mode

It was found out that there was something wrong with the font awesome "script src", but it is now working normally.

Top comments (0)