ChatterBank0 min ago
downloading file from website
What is the easiest procedure for loading PDF. or other .DOC files into/onto ones own website and making easily downloadable by users of that website. To have them in dropdown menu logical or directory format would be even better. Thanks in advance.
Answers
No best answer has yet been selected by MikeFahey. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.It all depends on what program your using to create your html pages:
Dreamweaver:
Copy the "doc" or "pdf" file you want to use into your site directory
Open the html page you wish to link to the documents from, select the text or image you wish to use as the link
Link to the selected file as you would if it were another html file
Close upload and test
HTML:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<a target='_blank' href="test.pdf">link text </a>
</body>
hope this helps;
nathan:
</html>