Guest User

Untitled

a guest
Jan 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <body>
  2. <div id="calculator">
  3. <div id="screen">
  4. <p>69</p>
  5. </div>
  6. <div class="buttons">
  7. <input type="button" value="1" id="1"/>
  8. <input type="button" value="2" id="2" />
  9. <input type="button" value="3" id="3" />
  10. <input type="button" value="4" id="4" />
  11. <input type="button" value="5" id="5" />
  12. <input type="button" value="6" id="6" />
  13. <input type="button" value="7" id="7" />
  14. <input type="button" value="8" id="8" />
  15. <input type="button" value="9" id="9" />
  16. <input type="button" value="+" id="plus"/>
  17. <input type="button" value="-" id="subtract"/>
  18. <input type="button" value="*" id="multiplication"/>
  19. <input type="button" value="/" id="divide"/>
  20. <input type="button" value="=" id="equals" />
  21. <input type="button" value="C" id="C" />
  22. </div>
  23. </div>
Add Comment
Please, Sign In to add comment