Answers for "iframe for pdf view"

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

iframe pdf html5

<div class='embed-responsive' style='padding-bottom:90%'>
  <embed src="../dist/pdf/9163465089428.pdf" type="application/pdf" width="100%" height="100%" />
</div>
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language