The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
I have been using the following html code to put in a "Click Here" button so when you click on it it takes you to another website - eg:
to visit Elizabeth's website.
It seemed to work fine at first but now I have noticed if I am in Internet Explorer and I click on the 'Click Here' box the link doesn't work, and if I am in Mozilla Firefox and I click on the box it works but it opens two new windows with the website page instead of just once.
Is anyone able to tell me what I am doing wrong here? I look forward to hearing from you - thank you!
<button> tag you put in your original code.Paste the following line between your opening and closing
<body> tags, adjusting the link address to suit you:<a href="http://freeola.com/">Visit Freeola.com</a>If that opens in 2 windows then it's definitely something to do with the browser or computer you're using.
Report back and we'll see if we can help further if it's still causing issues!
Any ideas why?
Many thanks.
Amanda
> Hello :)
>
> I have been using the following html code to put in a
> "Click Here" button so when you click on it it takes
> you to another website - eg:
>
>
> > target="_blank">
>
>
>
>
>
>
>
> >
>
> It seemed to work fine at first but now I have noticed if I am
> in Internet Explorer and I click on the 'Click Here' box the link
> doesn't work, and if I am in Mozilla Firefox and I click on the
> box it works but it opens two new windows with the website page
> instead of just once.
>
> Is anyone able to tell me what I am doing wrong here? I look
> forward to hearing from you - thank you!
Hmm, that code certainly doesn't look right. Try:
<html>
<body>
<a href="http://www.freewebs.com/elizabeth-bradley" target="_blank"><button type="button">Click Here</button></a>
</body>
</html>
Every single bit of your web page's content should be within the tags, and should only have one set of opening/closing html and body tags per page.
Edit: Not sure what the
I have been using the following html code to put in a "Click Here" button so when you click on it it takes you to another website - eg:
to visit Elizabeth's website.
It seemed to work fine at first but now I have noticed if I am in Internet Explorer and I click on the 'Click Here' box the link doesn't work, and if I am in Mozilla Firefox and I click on the box it works but it opens two new windows with the website page instead of just once.
Is anyone able to tell me what I am doing wrong here? I look forward to hearing from you - thank you!