index.html 799 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <link rel="stylesheet" href="index.css">
  7. <title>hw-js-11-redux-cart</title>
  8. </head>
  9. <body>
  10. <div class="wrapper">
  11. <div class="inputWrapper">
  12. <label for="laryok"><b>Корзина</b></label><br/>
  13. <select name="laryok" id="laryok">
  14. <option value="">--Выбери товар--</option>
  15. </select>
  16. <input type="number" id="amount" placeholder="Сколько штук?">
  17. <input type="number" id="bablo" placeholder="Сколько даешь бабла?">
  18. <button id='buyButton'>Buy</button>
  19. </div>
  20. <div class='tableWrapper'>
  21. <table id="goodsTable" border="1">
  22. </table>
  23. </div>
  24. </div>
  25. <script src="/js/cart.js" type="module"></script>
  26. </body>
  27. </html>