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 am trying to get from my mjcbank.htm. to link to products.shtml. And can not figure it out. I am using ssi and the locations are noted below.
<li>Products</li> (this does not work)
<li>About Us</li>
The file location is
advancedwebdesign/products.shtml
The navigation on the ssit is
adcancedwebdesign/ssifooter/navigation.shtml
the full server location is..
https://wiki.cit.iupui.edu/~mjcrawle/advancedwebdesign/mjcbank.shtml
It seems that your pages are on the same folder, try href="products.shtml"
Related
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
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 11 years ago.
Please take a look at this page via IE 8 or 9: http://sneakyrascal.com/starpons/about.html
As seen there are two footers but in fact I only added one footer. I figured it's connected with <a> tag. when I remove it, it will work fine.
Thanks in advance for any help
You open a new a instead of closing it:
<a href="images/Ruby_BIS_0011.jpg" class="iframe" ><img src="images/Ruby_BIS_0011-300x234.jpg" /><a>
You should have found this when using a the validator.
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.
Ive got this obviously wrong output when trying such a simple thing as making a link:
http://www.facebook.com/apps/a%E2%80%8Bpplication.php?id=164355773607%E2%80%8B006
Of course the link should be
http://www.facebook.com/apps/application.php?id=164355773607006
and it's also corrrect in the code:
<a class="nobk" href="http://www.facebook.com/apps/application.php?id=164355773607006"><img src="/_/img/facebook.png" alt="Facebook Kool Business" width="50" height="50"/></a>
My page with the bug is koolbusiness.com. Can you tell me what's wrong?
Thank you very much
Omit the spaces in "a pplication.php" and the id value.
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 11 years ago.
i am doing an iphone app,
there are sample project in this web
http://developer.apple.com/library/ios/#samplecode/XMLPerformance/Listings/ReadMe_txt.html
how to change this sample project to get " A few years ago " in this web code:(http://www.ted.com/talks/matt_cutts_try_something_new_for_30_days.html)
???
Have a look at Hpple, it's a nice HTML parser using XPath queries, which are really easy to learn.
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 am using
<a href="www.google.com" > test link </a>
I didn't understand why its not working in IE6.
You need to include http://.
test link
You should also explain what exactly you mean by 'not working', but regardless of that, that's the only mistake I see in your link.