Archive history Embedding PDFs on your site

summaryrefslogtreecommitdiff
blob: acd4c0ae0dfe55f59147d4b19d5e811cf7d44c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#title Embedding PDFs on your site
#lang en
#topics HowTo

If you need to embed a PDF found on the library or elsewhere, and you want just a simple snippet of HTML code, add to the HTML code of the page:

<example>
<object width="400" height="500" type="application/pdf" data="https://theanarchistlibrary.org/library/example.pdf">
    <p>Insert your error message here, if the PDF cannot be displayed.
    I suggest you to insert the link to the pdf</p>
</object>
</example>

See [[https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object][the MDN docs for the HTML <object> element]] for more details and supported browsers.