1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en" lang="uk">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>Homework</title>
- <link rel="stylesheet" href="./css/style.css" />
- </head>
- <body>
- <div class="calc">
- <input
- id="first"
- type="number"
- class="input"
- placeholder="Write number into calc"
- />
- <input
- id="second"
- type="number"
- class="input"
- placeholder="Write number into calc"
- />
- <button type="button" id="submitCalc">Calc</button>
- </div>
- <p id="result"></p>
- </body>
- <script src="../javascript/hw.js" type="module"></script>
- </html>
|