index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. <!--<script src="index.js"></script>-->
  9. <script>
  10. </script>
  11. </head>
  12. <body>
  13. <p>Количество велосипедов: <input type='number' id="bikes" /></p>
  14. <p>Категория велосипедов: <input type='number' id="bikesCategory" /></p>
  15. <p>Часов арнеды (стоимость 80грн/час): <input type='number' id="timeRent" /></p>
  16. <br></br>
  17. <p id="result" style = "background: green; padding: 20px 10px; color: white">тут появится цена когда вы заполните все ячейки</p>
  18. <script>
  19. const calcResult = () => {
  20. let bikesCost = 80;
  21. result.innerHTML = bikes.value * timeRent.value * bikesCost + ' грн'
  22. }
  23. bikes.oninput = timeRent.oninput = calcResult
  24. </script>
  25. </body>
  26. </html>