Link from HTML page to a folder within a folder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Zookeeper1
    New Member
    • Jul 2015
    • 1

    Link from HTML page to a folder within a folder

    My HTML page links to a main "Images" folder. Inside "Images" are folders with PDF documents. How do I link to these folders so that the PDFs can be opened in turn? EXAMPLE: Inside "Images" is the folder "Animals," which houses "Tiger.pdf" , "Hippo.pdf" , "Frog.pdf" and "Whale.pdf" .

    Thanks.
  • Luuk
    Recognized Expert Top Contributor
    • Mar 2012
    • 1043

    #2
    hmmm, you should get the reward for most stupid question ever asked...... ;)

    if you do not know this, you should not be making HTML pages for websites, or you should be taking a HTML course REALLY SOON !!!!!

    If you link to an image like this:
    Code:
    <img src="Images/cat.jpg>
    it wil shot the image

    if you link to the image like this:
    Code:
    <a href="Images/cat.jpg">link to cat</a>
    it will show a download link to the image

    so, obviously, a download link to the PDF is created like this:
    Code:
    <a href="images/Animals/Tiger.pdf">Tiger</a>

    Comment

    • Toxicous8
      New Member
      • Oct 2015
      • 57

      #3
      I can tell you a tip to find the url of the image.First go to the image.Then right click and properties.Afte r that click on the security tab then you'll see the url nice and clear.Hope this helps.

      Comment

      Working...