Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <div id='calcDiv' class='container row'>
  2. <div id='resultDiv'>
  3. <p class='resultText' id='results'></p>
  4. <p class='resultText' id='calcs'></p>
  5. </div><!--result div-->
  6. <div class='butDiv row'>
  7. <button id='acBut' type='button' class='but red'>AC</button>
  8. <button id='ceBut' type='button' class='but red'>CE</button>
  9. <button value='*' type='button' class='opBut but'>x</button>
  10. <button value='/' type='button' class='opBut but'>÷</button>
  11.  
  12. <button value='1' type='button' class='numBut but'>1</button>
  13. <button value='2' type='button' class='numBut but'>2</button>
  14. <button value='3' type='button' class='numBut but'>3</button>
  15. <button value='-' type='button' class='opBut but'>-</button>
  16.  
  17. <button value='4' type='button' class='numBut but'>4</button>
  18. <button value='5' type='button' class='numBut but'>5</button>
  19. <button value='6' type='button' class='numBut but'>6</button>
  20. <button id="plusBut" value='+' type='button' class='opBut but'>+</button>
  21.  
  22. <button value='7' type='button' class='numBut but'>7</button>
  23. <button value='8' type='button' class='numBut but'>8</button>
  24. <button value='9' type='button' class='numBut but'>9</button>
  25. <button type='button' class='invisible but'>I</button>
  26.  
  27.  
  28. <button id='zeroBut' value='0' type='button' class='numBut but'>0</button>
  29. <button value='.' type='button' class='numBut but'>.</button>
  30. <button id='equalBut'type='button' class='but'>=</button>
  31. <button type='button' class='invisible but'>I</button>
  32. </div><!--button div-->
  33. </div><!--calc div-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement