Search code examples
htmlhref

Hyperlinks in html5 not opening like expected


Could someone please help me with href link.

When I add a href link in the html editor it doesn't open alone but it follows my website link.

Example: I want to open a www.google.com when I add this it appears like

www.mysite.com/www.google.com

How can I fix this problem please?


Solution

  • Not sure about your code, but try this:

    <a href="http://www.yoursite.com">I'm a link!</a>
    

    It's the default href

    EDIT:

    Maybe if you have the href like this: (whitout the "http")

    <a href="www.yoursite.com">I'm a link!</a>
    

    The web navigator think that it's something like this:

    <a href="/contact.html">Contact</a>