Could we help you? Please click the banners. We are young and desperately need the money
Most modern browsers, especially on the desktop platform, come integrated with PDF readers. Thanks to that, we can embed PDFs directly into our websites for visitors to view. Here's how to do it.
The <object> element allows us to make use of the browser's file handling capabilities. We provide a file and its MIME type and, if supported by the browser, it will be rendered appropriately. This even works with extensions that extend the browser's file handling capabilities. If the file type is unsupported, the contents of the <object> element are displayed as a fallback.
With this knowledge in mind, we can embed a PDF into our website like so:
<object data="foobar.pdf" type="application/pdf" width="100%" height="900px">
This browser cannot render PDF documents.
</object>