index.html 532 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>PDF Embed Test</title>
  6. <style>
  7. *{
  8. margin:0;
  9. padding:0;
  10. }
  11. body {
  12. /* To hide useless vertical scrollbar */
  13. overflow:hidden;
  14. }
  15. .pdfobject {
  16. width:100%;
  17. height:100vh;/* To stretch height to 100% */
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <object class="pdfobject" data="test-pdf.pdf" type="application/pdf">
  23. <p>PDF Viewer is unable to load - <a href="test-pdf.pdf">click here to download the PDF</a></p>
  24. </object>
  25. </body>
  26. </html>