Problem in redirecting using wodrpress

1

I have a problem using the following html code on my website made in wordpress

<li><a href="www.twitter.com" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a>
</li>

What I think is doing a redirect to the twitter page but when I hit the button send me to mipaginaweb / www.twitter.com and I get the following screen:

Why is this happening?

    
asked by Juan Ortiz 21.12.2018 в 14:50
source

1 answer

7

You have a simple error, in order to place a link outside your web you must place the

  

link

then it would look like this:

<li><a href="https://twitter.com" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a>
</li>
    
answered by 21.12.2018 / 14:57
source