0

I am trying to redirect with the icons to a different social media websites but it goes back to my home page maybe the url or redirections are wrongly placed?

<div class='social-icons'>
            <Link
              class='social-icon-link facebook'
              href = 'https://www.facebook.com/Atlakamani2017/'
              target='_blank'
              aria-label='Facebook'
            >
              <i class='fab fa-facebook-f' />
            </Link>
            <Link
              class='social-icon-link instagram'
              href='https://www.instagram.com/atlakamanisurfingresort_/?hl=en'
              target='_blank'
              aria-label='Instagram'
            >
              <i class='fab fa-instagram' />
            </Link>
            <Link
              class='social-icon-link twitter'
              to='/'
              target='_blank'
              aria-label='Twitter'
            >
              <i class='fab fa-twitter' />
            </Link>
          </div>
Emile Bergeron
  • 17,074
  • 5
  • 83
  • 129
Ron
  • 91
  • 8

1 Answers1

2

To correct, I just needed to change the <link> tag for an <a> tag, and worked like a charm!

<a
  class='social-icon-link facebook'
  href='https://www.facebook.com/Atlakamani2017/'
  target='_blank'
  aria-label='Facebook'
>

Thanks Ameer

Emile Bergeron
  • 17,074
  • 5
  • 83
  • 129
Ron
  • 91
  • 8