-2

I made a site for myself for the first time and added icons to share my social media pages, I don't know how to add links to icons. I would be glad if you could help.

Html:

    <i class="fab fa-facebook"></i>
    <i class="fab fa-instagram"></i>
    <i class="fab fa-twitter"></i>
    <i class="fab fa-google"></i>
    
Cames Juses
  • 19
  • 1
  • 1
  • 1

2 Answers2

2

Font awesome does not care if icons are set in <i> tags, use <a> instead of <i>

<a href="FB Link" class="fab fa-facebook"></a>
1

You can write something like this using html tag,

<a href="Your facebook link"><i class="fab fa-facebook"></i></a>
Md Sabbir Alam
  • 4,937
  • 3
  • 15
  • 30