Jump to a particular page when embedding pdf document in HTML - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:a

Description

Jump to a particular page when embedding pdf document in HTML

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body> 
  <object type="application/pdf" data="my.pdf" width="995" height="841"></object> 
  <a href="my.pdf#page=9">Jump to page 9</a>  
 </body><!-- w w w.ja v a2s. c o  m-->
</html>

Related Tutorials