index.html 503 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>PrUn calculator</title>
  7. <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10. <main>
  11. <table>
  12. <thead>
  13. <tr>
  14. <th>recipe</th>
  15. <th>daily profit</th>
  16. <th>volume</th>
  17. <th>traded</th>
  18. <th>building cost</th>
  19. </tr>
  20. </thead>
  21. <tbody></tbody>
  22. </table>
  23. </main>
  24. <script type="module" src="./dist/main.js"></script>
  25. </body>
  26. </html>