1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>HW7</title>
- <style>
- table td {
- padding: 5px;
- border: 1px solid grey;
- }
- </style>
- </head>
- <body>
- <input type="number" id="n1">
- <input type="number" id="n2">
- <button id="calcBtn">sum</button>
- <div id="result"></div>
- <script src="main.js"></script>
- </body>
- </html>
|