index.html 705 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>PrUn ROI</title>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. <link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <meta name="theme-color" content="#222">
  10. </head>
  11. <body>
  12. <main>
  13. <table>
  14. <thead>
  15. <tr>
  16. <th>wrought<br>product</th>
  17. <th>expertise</th>
  18. <th>daily<br>profit/area</th>
  19. <th>break<br>even</th>
  20. <th>capex</th>
  21. <th>daily<br>opex</th>
  22. <th>logistics</th>
  23. <th>daily output<br>traded</th>
  24. </tr>
  25. </thead>
  26. <tbody></tbody>
  27. </table>
  28. </main>
  29. <script src="roi.js"></script>
  30. </body>
  31. </html>