index.html 705 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en" lang="uk">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <title>Homework</title>
  8. <link rel="stylesheet" href="./css/style.css" />
  9. </head>
  10. <body>
  11. <div class="calc">
  12. <input
  13. id="first"
  14. type="number"
  15. class="input"
  16. placeholder="Write number into calc"
  17. />
  18. <input
  19. id="second"
  20. type="number"
  21. class="input"
  22. placeholder="Write number into calc"
  23. />
  24. <button type="button" id="submitCalc">Calc</button>
  25. </div>
  26. <p id="result"></p>
  27. </body>
  28. <script src="../javascript/hw.js" type="module"></script>
  29. </html>