Images not rendering [closed] - html

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Why are two of my images not rendering? It works when I use notepad++, but not when I upload it to my FTP.

403, forbidden message is there for this error
http://example.com/em_w/02/37/98/837-02379877w.jpg
This is the photo which can't be opened by the browser. The link that is given is not accessible through the server. If you go to this link, you will see the photo.
HINT: hit F12, which will open up Firebug. Switch to console view, and reload the page. From there, you can see if something's wrong.y

Related

How to download swf file as a pdf from docin.com [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
can any 1 know how to download swf file from http://www.docin.com/p-269086295.html.
In above mention site around 1600 pages shown as a swf file.
I use, open source code and search for swf file but nothing happen.
Try to google for Douding Document Downloader, though I'm pretty sure you need to pay for downloading those files.
So if you still want to have the document, register to the site, buy an account, and press the download button (in chinese).

get rid of file:///c:// in HTML file [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
I save my html in my local driver (c:/).
I do the next in my html file:
<td>Google</td>
When I open it, and click on the link, it enter to: file:///C:/www.google.com
How can I get rid of the file://c:/
You need to put http:// in front of the domain name. Otherwise it links to a file named "www.google.com" in the same directory as the HTML file.
<td>Google</td>
You need http:// before your link.
<a href="http://www.google.com">
Otherwise it is looking for a file called www.google.com on your server!

Can't work out download URL [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I can't seem to work out the download URL of the CSV file on this webpage, all I can workout is this:
<div id="exportMI" class="settings-menu-item goog-menuitem ">Download as CSV</div><div class="settings-menu-item goog-submenu">
Doesn't seem very useful, can you help me get the download url?
You can use your browser's download manager to find out the download URL, which is http://www.google.com/trends/trendsReport?cmpt=q&content=1&export=1

PDF link in HTML opens up blank page [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I'm sharing links to PDF files that reside in an external server.
Here is how the links look like:
link 1
link 2
In the above sample page I made (azure domain renamed), the first link opens in Chrome's PDF viewer, the 2nd one however opens in a blank page.
What can be the reason?
I think I've found the solution.
When uploading a file to Azure blob, the Azure server isn't smart enough to set the content type of the file according to its extension/content, thus when downloaded by client it's misleading the browser.
The default Azure blob content type is application/octet-stream.
Check here and here for more.

Image getting cut off in IE [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Please checkout my website in Internet Explorer:
http://www.ziftit.com/index2.html
I can't figure out why the gift box image is getting cut off in the top of the image.
Update: I added the doctype to the top of the page and then got rid of all the comments and now it displays perfectly!
As a first step, add a correct Doctype to your document.
Then validate that the HTML and CSS are valid.