index.html 402 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>HW7</title>
  6. <style>
  7. table td {
  8. padding: 5px;
  9. border: 1px solid grey;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <input type="number" id="n1">
  15. <input type="number" id="n2">
  16. <button id="calcBtn">sum</button>
  17. <div id="result"></div>
  18. <script src="main.js"></script>
  19. </body>
  20. </html>