123456789101112131415161718 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Document</title>
- <link rel="stylesheet" href="./stylesheet.css">
- </head>
- <body>
- <h1>Example Page</h1>
- <script>
- console.log('Starting worker...');
- new Worker('worker.js');
- console.log('Worker started!');
- </script>
- </body>
- </html>
|