I need help in HTML open PDF file options

Asked By 10 points N/A Posted on -
qa-featured

Hello gurus.  I'm new to this so please bear with me.  I already created a webpage and I would like to know how to embed or insert PDF documents.  I need tutorials on HTML open PDF file options.  Can someone help?  Thanks in advance.

SHARE
Best Answer by Leland L Olson
Answered By 10 points N/A #168701

I need help in HTML open PDF file options

qa-featured

Greetings Lauraj Castanon!

How are you today? I Hope you are fine. About your problem "Embedding or inserting PDF documents to webpage" is easy. It is as easy as linking to another website. Here is the tutorial on how to embed or insert PDF documents to you webpage. https://msu.edu/~urban/sme865/resources/embedded_pdf.html. I hope this link will provide you all the necessary information you want to know about your problem. Thanks.

Best Answer
Best Answer
Answered By 40 points N/A #168703

I need help in HTML open PDF file options

qa-featured

Hello Lauraj,

Using hyperlinks on your webpage you can display your pdf files very easily or embed a pdf in a HTML page.

To embed a pdf file on to your HTML website you do the following:

Create your PDF file and save it on a local drive on your computer.

Upload your file to your hosting server. Take note on the path of the file.

  1. To display the PDF in a new window: <a target=”_blank”href=”filename.pdf”title=””>Type some text.</a>.
  2. To open on the same window: <a href=”filename.pdf”title=>type some text here.</a>

For “Filename.pdf” use the filename for your document and the path of the web host relative to your current html page. ”type text here” should have quotes.

You can get the full tutorial on: http://team358.org/files/website/Basic_HTML_Tutorial.pdf

Thanks.

Related Questions