Display PDFs Inline on Your Web Site
You can display PDFs right on your web pages by using a simple line of code. Your visitors won't have to download the PDF to read or, and they won't have to leave your site. Here's how to do it. That PDF is display in something called an "iframe" or inline frame. Here's the code that makes it happen <iframe width="720" height="500" scrolling="no" frameborder="1" src="http://www.YOURSITE.com/YOUR_PDF.pdf"></iframe>
Just substitute your PDF's URL in the example above, and it should work for you, too.
|