PDFの任意のページにリンクする
<a href="example.pdf#page=3">3ページ目を表示</a>
<embed>タグを利用
<embed
src="test.pdf"
width="60%"
height="80%"
/>
<object>タグを利用
<object
classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"
width="60%"
height="80%"
id="Pdf1"
>
<param name="SRC" value="test.pdf" />
</object>