I click on link and appears the link of my blog + the link that should open alone / Blogger

Asked

Viewed 16 times

1

I have a blog on Blogger and when I click on a link, appears the link of my blog + the link that should open, getting like this: https://www.vidadecomissaria.com.br/www.flymundo.com.br

You should only open the second link in a new tab, but open it like this.

The code is this:

<div class="quart cand" data-scroll-reveal="enter right and move 50px">
    <i class="fa fa-heart" />
    <b>Fly Mundo</b>
    <pre>Nossa agência de viagens</pre>
    <hr/>
    <p>Super recomendamos o serviço da FM, que vai desde seguro viagem até venda de passagens aéreas promocionais!</p>
    <em>E o atendimento é incrível!</em>
    <a class="touch" href="www.flymundo.com.br">VER MAIS</a>
</div>

2 answers

1

You need to put the protocol on the link http or https, in your case it would be something like http://www.flymundo.com.br

Without the http html interprets as a link relative to the current URL.

  • Exactly that!

0

Just like Neuber Oliveira said.

What you need to do is replace the line:

<a class="touch" href="www.flymundo.com.br">VER MAIS</a>

for:

<a class="touch" href="http://www.flymundo.com.br">VER MAIS</a>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.