I have a PDF file and a Video File. How do them to my webpage as a download link so people can download it?
Also, if somebody can kindly suggest me a basic jQuery lightbox to display images clicked in a gallery.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have a web-page I assume you have some form of hosting for that web-page? And you have some way of uploading files to that hosting platform – e.g. FTP.
So you might have have an FTP account which already contains a document called “index.html” which you can access at:
http://www.example.com/index.html
So you should just be able to upload your PDF and video files to the same FTP account, and they would then be available to download at:
http://www.example.com/mydocument.pdf
http://www.example.com/myvideo.wmv
You can then edit your index.html and add the following lines of HTML (inside the
<body>somewhere):As for jQuery photo lightboxes, the suggestions given by the others would all be perfectly good.
I’m a little confused as to, if you are hoping to add in JavaScript modules to your web-page, how is it that you don’t already know how to serve simple static files and link to them from HTML? So sorry if I misunderstood your needs.