I'm not a professional in programming and I need help linking an img to a article in my blog. I know this should be pretty straight-forward but it keeps opening the image instead of opening the article. It keeps opening the scr instead of opening the link in href.
Could anyone help?
Thanks in advance
Pretty much straight forward. Just Upload an image and then select that image, click on the anchor icon and replace the image URL to the one you want to be redirected.
Screenshot for clarification:
You can do this with HTML Code:
<a href="https://example.com">
<img src="https://1.bp.blogspot.com/some-gibberish-text-asdasd-asd" alt="Image Description">
</a>
change the URL https://example.com with your own url.
Related
I am trying to link my home page to various other pages using the code below.
<a href = “./My Website.html”>Home</a>
<a href = “./Career.html”>Career</a>
However when I run this and I hit the hyperlink to navigate to the page Career for example, I receive the following error:
Safari can not find the file
file:///Users/Documents/HTML/der/“./Career.htmlâ€%C2%9D
I am using the free in built text editor to write the HTML on my macbook, and the to files are stored in the same folder
How do I resolve this so that my hyperlinks link to the correct file, and not add in the special characters?
It might be worth noting that when I go in to the address bar and manually remove the '“./' and 'â€%C2%9D' and refresh, my page will load as expected.
Thanks
Try and see if this works:
<a href='/MyWebsite'>Home</a>
<a href='/Career'>Career</a>
Do you have a screenshot of your directory?
So I'm still learning, and I can't figure out why my links won't work. If I click "open in new tab", it does work. I'm trying to link to another external page.
I've read that this could be due to another linked js file... but what js code could effect links like this?
I mean if I'm going to go through all my other files I'd rather know what I'm looking for.
Here is my link:
visit
FYI, no links work for external URLs, but it works when I use links to navigate around my own website.
check you achor link. That is lacking of closing tag </a>
I have been testing a site and I found a terrible bug in IE10.
Tour Monkey - Official site
App links are not recognized, but social ones are.
I haven't found anything good already, and the deadline is close. Thanks a lot for your help.
After giving a look I realized that I had to add some content in the a tag. In this case, an img tag.
Old HTML (working in all but IE):
<div class="app-link" id="appstore"><a class="app-link" href="https://itunes.apple.com/us/app/tour-monkey/id810107813?mt=8"></a></div>
New HTML
<div class="app-link" id="appstore"><a class="app-link" href="https://itunes.apple.com/us/app/tour-monkey/id810107813?mt=8" target="_self"><img src="img/appstore.png"></a></div>
I have to design a web app where if you paste the link of particular video page from any video sharing site like "Youtube", "Metacafe" etc it should embed that video in the page. In simple words, what I was asked to do is that I have to embed a video from any site in my page.
Thanx in advance. :)
You can study the embed codes generated by YouTube and MetaCafe etc~ and then code something to mimic how they do it~
It seems like the better solution would be to allow people to paste the embed code generated by the site itself though. Since the hosters' conventions change.
You could Try this:
<iframe height="500" width="500" scr="http://www.youtube.com/embed/videoidentificationnumber/"></iframe>
Dont do this:
<object scr="http://www.youtube.com/embed/videoidentificationnumber"></object>
You will need to make sure that when you click the submit button it gets the identification number from the end and putting it in the bit specified by videoidentificationnumber (I dont know how though).
I've tried to create simple facebook app with iFrame,, but I always get nested iFrame on every I click link on my application, I already tried a solution from site http://railsrant.com/2009/10/14/creating-a-facebook-iframe-app-using-ruby-on-rails-facebooker/
it's work on Firefox and Chrome, but doesn't work at IE
Any idea or suggestion for this?
Thanks
I think you should use this line in your head section, this will open the links in parent window instead of iframe in iframe:
<base target="_parent" />
and also make these URL related to canvasURL(facebook app URL). I hope this will solve your problem.
add target="_top" to your <a href="..."> links