What is the code in HTML for a link that leads to a certain file?

I will use a .pdf file as an example:-

<a href="pdfs/filename.pdf">Click here</a>

pdfs = the location of the folder the file you want to open is in

filename.pdf = the full file name of the file you want to open, including the ext (i.e = .pdf)
 
Back
Top