Advertisement
nadia_dr

Untitled

Jun 9th, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  <head>
  4.     <title>Calculator</title>
  5.  </head>
  6.  <body>
  7.     <table border="1" width="40%" height="60%">
  8.       <tr>
  9.         <td colspan="4"  height="100"></td>
  10.       </tr>
  11.       <tr>
  12.         <td height="100"><button type="button">1</button></td>
  13.         <td  height="100"><button type="button">2</button></td>
  14.         <td  height="100"><button type="button">3</button></td>
  15.         <td  height="100"><button type="button">+</button></td>
  16.       </tr>
  17.       <tr>
  18.         <td  height="100"><button type="button">4</button></td>
  19.         <td  height="100"><button type="button">5</button></td>
  20.         <td  height="100"><button type="button">6</button></td>
  21.         <td height="100" ><button type="button">-</button></td>
  22.       </tr>
  23.       <tr>
  24.         <td height="100" ><button type="button">7</button></td>
  25.         <td  height="100"><button type="button">8</button></td>
  26.         <td  height="100"><button type="button">9</button></td>
  27.         <td height="100" ><button type="button">*</button></td>
  28.       </tr>
  29.       <tr>
  30.         <td  height="100"><button type="button">C</button></td>
  31.         <td  height="100"><button type="button">0</button></td>
  32.         <td  height="100"><button type="button">/</button></td>
  33.         <td  height="100"><button type="button">=</button></td>
  34.       </tr>
  35.     </table>
  36.  </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement