index.html 363 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Hello World!</title>
  6. <link rel="stylesheet" href="index.css" />
  7. </head>
  8. <body>
  9. <h1>Calculate prime numbers</h1>
  10. <p></p>
  11. <button type="button" id="start">Start</button>
  12. <p id="status"></p>
  13. <p id="results"></p>
  14. <script src="site.js"></script>
  15. </body>
  16. </html>