index.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" href="index.css">
  7. </head>
  8. <body>
  9. <section class="examoles">
  10. <div id="multiplyTable"></div>
  11. <!-- Calc -->
  12. <div class="calc-form">
  13. <div class="form__row">
  14. <label class="form__label"
  15. for="weight"
  16. >Укажите вес</label>
  17. <input class="form__input js-form-weight"
  18. type="number"
  19. id="weight"
  20. >
  21. </div>
  22. <div class="form__row">
  23. <label class="form__label"
  24. for="height"
  25. >Укажите рост</label>
  26. <input class="form__input js-form-height"
  27. type="number"
  28. id="height"
  29. >
  30. </div>
  31. <div class="form__row">
  32. <label class="form__label"
  33. for="age"
  34. >Укажите возраст</label>
  35. <input class="form__input js-form-age"
  36. type="number"
  37. id="age"
  38. >
  39. </div>
  40. <button class="form__button js-form-calculate"
  41. type="button"
  42. >Рассчитать</button>
  43. <div class="alert alert-success js-alert js-alert-success"
  44. role="alert"
  45. ></div>
  46. <div class="alert alert-danger js-alert js-alert-danger"
  47. role="alert"
  48. >Укажите данные</div>
  49. </div>
  50. <!-- Calc -->
  51. <!-- Calc Live -->
  52. <div class="calc-form-live">
  53. <div class="form__row">
  54. <label class="form__label"
  55. for="weightLive"
  56. >Укажите вес</label>
  57. <input class="form__input js-form-input js-form-weight"
  58. type="number"
  59. id="weightLive"
  60. >
  61. </div>
  62. <div class="form__row">
  63. <label class="form__label"
  64. for="heightLive"
  65. >Укажите рост</label>
  66. <input class="form__input js-form-input js-form-height"
  67. type="number"
  68. id="heightLive"
  69. >
  70. </div>
  71. <div class="form__row">
  72. <label class="form__label"
  73. for="ageLive"
  74. >Укажите возраст</label>
  75. <input class="form__input js-form-input js-form-age"
  76. type="number"
  77. id="ageLive"
  78. >
  79. </div>
  80. <div class="alert alert-success js-alert js-alert-success"
  81. role="alert"
  82. ></div>
  83. <div class="alert alert-danger js-alert js-alert-danger"
  84. role="alert"
  85. >Укажите данные</div>
  86. </div>
  87. <!-- Calc Live -->
  88. </section>
  89. <script src="index.js"></script>
  90. </body>
  91. </html>