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>