recipes.html 544 B

123456789101112131415161718192021222324252627
  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 calc — recipes</title>
  7. <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10. <main>
  11. <a href="index.html">back</a>
  12. <table>
  13. <thead>
  14. <tr>
  15. <th>recipe</th>
  16. <th>daily profit</th>
  17. <th>volume</th>
  18. <th>traded</th>
  19. <th>building cost</th>
  20. </tr>
  21. </thead>
  22. <tbody></tbody>
  23. </table>
  24. </main>
  25. <script type="module" src="./dist/recipes.js"></script>
  26. </body>
  27. </html>