123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="ru">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="stylesheet" href="index.css">
- <title>hw-js-11-redux-cart</title>
- </head>
- <body>
- <div class="wrapper">
- <div class="inputWrapper">
- <label for="laryok"><b>Корзина</b></label><br/>
- <select name="laryok" id="laryok">
- <option value="">--Выбери товар--</option>
- </select>
- <input type="number" id="amount" placeholder="Сколько штук?">
- <input type="number" id="bablo" placeholder="Сколько даешь бабла?">
- <button id='buyButton'>Buy</button>
- </div>
- <div class='tableWrapper'>
- <table id="goodsTable" border="1">
-
- </table>
- </div>
- </div>
- <script src="/js/cart.js" type="module"></script>
- </body>
- </html>
|