Advertisement
mic52

Untitled

Jan 28th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  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>Document</title>
  8. </head>
  9. <body>
  10.  
  11. <form >
  12. value 1= <input type="text" id="Value1">
  13. value 2= <input type="text" id="Value2">
  14. operator:
  15. <select id="operator">
  16. <option value="add" >Add</option>
  17. <option value="min" >minus</option>
  18. <option value="div" >divide</option>
  19. <option value="mul" >multiply</option>
  20. </select>
  21. <button type="button" onclick="calc()"> Calculate </button>
  22. </form>
  23.  
  24. <div id="result"></div>
  25.  
  26.  
  27. </body>
  28. <script src="main.js"></script>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement