index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <!-- форма для выбора товара и количества товара и кнопка "Купить" -->
  11. <form>
  12. <label for="product-select">Выберите товар:</label>
  13. <select id="product-select">
  14. <option value="beer">Пиво</option>
  15. <option value="soda">Газировка</option>
  16. <option value="juice">Сок</option>
  17. </select>
  18. <br />
  19. <label for="quantity-input">Выберите количество:</label>
  20. <input type="number" id="quantity-input" />
  21. <br />
  22. <button type="button" id="buy-button">Купить</button>
  23. </form>
  24. <!-- форма для выбора товара и количества, а также кнопка "Купить" -->
  25. <form id="buy-form">
  26. <label for="product">Выберите товар:</label>
  27. <select id="product">
  28. <option value="beer">Пиво</option>
  29. <option value="soda">Сок</option>
  30. <option value="juice">Морс</option>
  31. </select>
  32. <label for="quantity">Выберите количество:</label>
  33. <input type="number" id="quantity" min="1" value="1" />
  34. <button type="submit">Купить</button>
  35. </form>
  36. <script src="./index.html"></script>
  37. </body>
  38. </html>