Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="stylesheet" type="text/css" href="styles.css" >
  4. </head>
  5. <title>Calculator</title>
  6.  
  7. <body>
  8.  
  9. <div id="Calculator">
  10. <form>
  11. <input type="text" id="display" >
  12. <input type="button" value="C" id="keys" onclick="addtoscreen('c')">
  13. <input type="button" value="<--" id="keys" onclick="backspace()">
  14. <input type="button" value="x^3" id="keys" onclick="power(3)">
  15. <input type="button" value="+" id="keys" onclick="addtoscreen('+')">
  16. <br>
  17. <input type="button" value="9" id="keys" onclick="addtoscreen('9')">
  18. <input type="button" value="8" id="keys" onclick="addtoscreen('8')">
  19. <input type="button" value="7" id="keys" onclick="addtoscreen('7')">
  20. <input type="button" value="-" id="keys" onclick="addtoscreen('-')">
  21. <br>
  22. <input type="button" value="6" id="keys" onclick="addtoscreen('6')">
  23. <input type="button" value="5" id="keys" onclick="addtoscreen('5')">
  24. <input type="button" value="4" id="keys" onclick="addtoscreen('4')">
  25. <input type="button" value="*" id="keys" onclick="addtoscreen('*')">
  26. <br>
  27. <input type="button" value="3" id="keys" onclick="addtoscreen('3')">
  28. <input type="button" value="2" id="keys" onclick="addtoscreen('2')">
  29. <input type="button" value="1" id="keys" onclick="addtoscreen('1')">
  30. <input type="button" value="/" id="keys" onclick="addtoscreen('/')">
  31. <br>
  32. <input type="button" value="0" id="keys" onclick="addtoscreen('0')">
  33. <input type="button" value="." id="keys" onclick="addtoscreen('.')">
  34. <input type="button" value="=" id="equal" onclick="answer()">
  35.  
  36.  
  37.  
  38. </form>
  39.  
  40. </div>
  41. <script src="javascript.js"></script>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement