Answers for "html pdf viewer"

7

html embed a pdf

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <h1>PDF Example with iframe</h1>
  
 		   
    <iframe src="link/to/your.pdf" width="100%" height="500px">
    </iframe>
 
  
  </body>
</html>

<!-- insta: @hardcode_studios -->
Posted by: Guest on April-17-2020
0

open pdf in browser javascript

<a href="#" onclick="window.open('MyPDF.pdf', '_blank', 'fullscreen=yes'); return false;">MyPDF</a>
Posted by: Guest on November-16-2020
0

insérer pdf dans html

<embed src=http://monsite.fr/monfichier.pdf width=800 height=500 type='application/pdf'/>
Posted by: Guest on July-28-2020

Browse Popular Code Answers by Language