Created
March 10, 2021 15:39
-
-
Save guillaumebdx/f4a60e5f73828d1c28216ce2050926a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" | |
| content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <h1>Calculator</h1> | |
| <input type="number" placeholder="Enter a number" id="number1"> | |
| <select name="operand" id="operand"> | |
| <option value="+">+</option> | |
| <option value="-">-</option> | |
| <option value="/">/</option> | |
| <option value="*">x</option> | |
| </select> | |
| <input type="number" placeholder="Enter a number" id="number2" disabled> | |
| <button id="my_button">OK</button> | |
| <div id="result">0</div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment