Advertisement
Taran

Lesson 7 - Calculator

Nov 21st, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5.     <link rel="stylesheet" href="main.css"/>
  6. </head>
  7.  
  8. <body>
  9.  
  10.     <div id="container">
  11.  
  12.         <input type="text" id="input" value="0" maxlength="7" autofocus/>
  13.         <div>
  14.             <button class="bigButton">=</button>
  15.         </div>
  16.         <div class="floatLeft">
  17.             <div>
  18.                 <button onclick="">1</button>
  19.                 <button onclick="">2</button>
  20.                 <button onclick="">3</button>
  21.                 <button onclick="">+</button>
  22.             </div>
  23.             <div>
  24.                 <button onclick="">4</button>
  25.                 <button onclick="">5</button>
  26.                 <button onclick="">6</button>
  27.                 <button onclick="">-</button>
  28.             </div>
  29.             <div>
  30.                 <button onclick="">7</button>
  31.                 <button onclick="">8</button>
  32.                 <button onclick="">9</button>
  33.                 <button onclick="">*</button>
  34.             </div>
  35.             <div>
  36.                 <button onclick="">0</button>
  37.                 <button onclick="">.</button>
  38.                 <button onclick="">C</button>
  39.                 <button onclick="">/</button>
  40.             </div>
  41.         </div>
  42.     </div>
  43.  
  44.  
  45. <script src="main.js"></script>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement