skip to Main Content

Hi I a non programmer and a bit older now.
I am trying to design a site using Google sites.
I have embedded links to other third party websites just using the URL link and it works fine except that I do not have any way of navigating back to my own web site,which kind of defeats the purpose.
Can any one please advise how I can solve this problem, I think it is something to do with a href target blank but I cant remember how to do it,I can follow html instructions, thanks in advance terrie

I embedded link to third party website and I expected to be able to use back navigation arrow on browser or something similar to make sure that I could return to my website

2

Answers


  1. Chosen as BEST ANSWER

    Thankyou very much,really appreciated


  2. Values of the target Attribute:

    Value Name Notes
    _blank Opens the linked document in a new tab or window.
    _parent Opens the link in the parent frame. Frames are deprecated in HTML5.
    _self Open the link in the current frame.
    _top Opens the link in the top-most frame. Frames are deprecated in HTML5.
    frame name Opens the link in the named frame. Frames are deprecated in HTML5.

    basically:

    <a href="https://example.com" target="_blank">OPEN SITE</a>
    

    would open the desired page in a new tab.

    Hope this helps!

    (Source: Values of the target Attribute)

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search