index.html 361 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Document</title>
  5. <link rel="stylesheet" href="./stylesheet.css">
  6. </head>
  7. <body>
  8. <h1>Example Page</h1>
  9. <script>
  10. console.log('Starting worker...');
  11. new Worker('worker.js');
  12. console.log('Worker started!');
  13. </script>
  14. </body>
  15. </html>