Wednesday, 15 May 2013

How to display pdf file in html page

This is following example will display pdf file using iframe.

 <html>  
      <head>  
           <title>pDf file Display demo</title>  
 </head>  
 <body>  
      <iframe src="TAX.PA.pdf" title="your_title" align="top" height="620" width="100%" frameborder="0" scrolling="auto" target="_self">  
 </body>  
 </html>  

here just you need to give src="pdf file name" then its will display the pdf file name in html page.

No comments:

Post a Comment