| 1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>PrUn calculator</title>
- <link rel="stylesheet" href="styles.css">
- </head>
- <body>
- <main>
- <table>
- <thead>
- <tr>
- <th>recipe</th>
- <th>daily cost</th>
- </tr>
- </thead>
- <tbody></tbody>
- </table>
- </main>
- <script type="module" src="./dist/main.js"></script>
- </body>
- </html>
|