index.html 431 B

1234567891011121314151617181920212223
  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 cost</th>
  16. </tr>
  17. </thead>
  18. <tbody></tbody>
  19. </table>
  20. </main>
  21. <script type="module" src="./dist/main.js"></script>
  22. </body>
  23. </html>