``` html 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>EmbedPDF</title>
  <style>
    html, body { overscroll-behavior: none; }
    body {
      margin: 0;
      padding: 0;
    }
  </style>
</head>
<body>
  <div id="pdf-viewer" style="height: 100dvh"></div>
  <script async type="module">
    import EmbedPDF from './embedpdf.js';

    const EPDFinstance = EmbedPDF.init({
      type: 'container',
      target: document.getElementById('pdf-viewer'),
      src: './ebook.pdf',
      worker: false
    })
  </script>
</body>
</html>
```