| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>PrUn calc — recipes</title>
- <link rel="stylesheet" href="styles.css">
- </head>
- <body>
- <main>
- <a href="index.html">back</a>
- <table>
- <thead>
- <tr>
- <th>recipe</th>
- <th>daily profit</th>
- <th>volume</th>
- <th>traded</th>
- <th>building cost</th>
- </tr>
- </thead>
- <tbody></tbody>
- </table>
- </main>
- <script type="module" src="./dist/recipes.js"></script>
- </body>
- </html>
|