+1 vote
in Programming Languages by (13.2k points)
I want to display a PDF file in an HTML page. Is there any way to include PDF file in an HTML file?

1 Answer

+3 votes
by (63.4k points)
selected by
 
Best answer

To show a PDF file in an HTML page, you can use any of the following methods:

Using the <embed> Tag

<embed src="path-to-your-file.pdf" type="application/pdf" width="100%" height="100%"/>

Using the <iframe> Tag

<iframe src="path-to-your-file.pdf" width="100%" height="100%"></iframe>

Using the <object> Tag

<object data="path-to-your-file.pdf" type="application/pdf" width="100%" height="100%"></object>


...