Skip to content

Instantly share code, notes, and snippets.

@mazuhl
Created February 4, 2010 14:50
Show Gist options
  • Save mazuhl/294694 to your computer and use it in GitHub Desktop.
Save mazuhl/294694 to your computer and use it in GitHub Desktop.
Embedding a PDF into a webpage
<!-- using <object> (doesn't work in IE) -->
<object height="450" width="600" type="application/pdf" data="/attachment/hello.pdf">
<h2>This content requires a PDF plugin</h2>
<p>View the PDF file here: <a href="/attachment/hello.pdf">hello.pdf</a></p>
</object>
<!-- using an iframe (does work in IE) pass options in the query string -->
<iframe height="900" width="99%" src="/attachment/hello.pdf#toolbar=0&amp;scrollbar=0&amp;navpanes=0"> </iframe>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment