index.html 1016 B

1234567891011121314151617181920212223242526272829303132
  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. <label><input type="checkbox" id="low-volume">show low volume</label>
  14. <table>
  15. <thead>
  16. <tr>
  17. <th>wrought<br>product</th>
  18. <th>expertise</th>
  19. <th>daily<br>profit/area</th>
  20. <th>break<br>even</th>
  21. <th title="construction cost of 1 building">capex</th>
  22. <th title="input and worker costs of 1 building (deterioration/repair not included)">daily<br>opex</th>
  23. <th title="max of input and output t and m³ per area">logistics</th>
  24. <th title="units output by 1 building over average daily traded">daily output<br>traded</th>
  25. </tr>
  26. </thead>
  27. <tbody></tbody>
  28. </table>
  29. </main>
  30. <script src="roi.js"></script>
  31. </body>
  32. </html>