123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/html">
- <head>
- <meta charset="UTF-8">
- <title>HW11</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div id='shop'>
- <label> Выберите товар для покупки
- <select id='goods'>
- </select>
- </label>
- <label>Сколько вы хотите купить?
- <input type='number' id='quantity' placeholder="введите число"/>
- </label>
- <label>У вас на счету гривен
- <input type="number" id="fieldForMoney">
- </label>
- <button id='buy'>Купить</button>
- </div>
- <script src="main.js"></script>
- </body>
- </html>
|