How to embed PDF file in HTML

3 Answers

0 votes
<!DOCTYPE html>
<html>
  <head>
    <title>How to embed PDF file in HTML</title>
  </head>
  <body>
    <object
      type="application/pdf"
      data="https://html.spec.whatwg.org/print.pdf"
      width="800"
      height="1000"
    >
    </object>
  </body>
</html>

 



answered Jun 6, 2021 by avibootz
0 votes
<!DOCTYPE html>
<html>
  <head>
    <title>How to embed PDF file in HTML</title>
  </head>
  <body>
    <embed 
      src="https://html.spec.whatwg.org/print.pdf#toolbar=0&navpanes=0&scrollbar=0" 
      width="800" 
      height="1000"
    > 
  </body>
</html>

 



answered Jun 6, 2021 by avibootz
0 votes
<!DOCTYPE html>
<html>
  <head>
    <title>How to embed PDF file in HTML</title>
  </head>
  <body>
    <object 
      width="100%" 
      height="800" 
      type="application/pdf"
      data="https://html.spec.whatwg.org/print.pdf#scrollbar=0&toolbar=0&navpanes=0"  
      style="pointer-events: none;"
    >
      <p>PDF cannot be displayed</p>
    </object>
  </body>
</html>

 



answered Jun 6, 2021 by avibootz

Related questions

1 answer 215 views
1 answer 242 views
1 answer 179 views
1 answer 173 views
173 views asked Nov 20, 2018 by avibootz
1 answer 173 views
173 views asked Aug 25, 2020 by avibootz
1 answer 214 views
...