Advertisement
Guest User

kalkulaator

a guest
Nov 5th, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.13 KB | None | 0 0
  1. <html>
  2.  
  3. <!-- see on kommentaar, kommentaarid kuidagi ei mõjuta veebilehe tööd -->
  4. <!-- head block -->
  5. <head>
  6.     <title>Lehe nimetus tab-bar'is</title>
  7.     <!-- Include meta tag to ensure proper rendering and touch zooming -->
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.  
  10.     <!-- Include jQuery Mobile stylesheets -->
  11.     <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
  12.  
  13.     <!-- Include the jQuery library -->
  14.     <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
  15.  
  16.     <!-- Include the jQuery Mobile library -->
  17.     <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
  18. </head>
  19.  
  20. <!-- stiilide block -->
  21. <style>
  22.     img{
  23.         width: 100px;
  24.         height: auto;
  25.     }
  26. </style>
  27.  
  28. <!-- body block -->
  29. <body>
  30.  
  31.     <h3>Kalkulaator</h3>
  32.     <p>Muutuja a väärtus: <input type="text"></p>
  33.     <p>Muutuja b väärtus: <input type="text"></p>
  34.     <p>a+b=<text id="apb"></text></p>
  35.     <p>a-b=<text id="amb"></text></p>
  36.     <button id="calculate">Calculate!</button>
  37. </body>
  38.  
  39. <script>
  40.     var a = 5;
  41.     var b = 32;
  42.     var sum = a + b;
  43. </script>
  44.  
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement