Advertisement
Guest User

ver4

a guest
Nov 5th, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 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>Pealkiriasdsa</h3>
  32. <p>Mingi tekst ka siin.</p>
  33. <p>aISUdiasdasuhsadiu</p>
  34. <img src="http://vignette2.wikia.nocookie.net/chocolate/images/a/ab/Chocolate_chip_cookie.jpg/revision/latest?cb=20120618211310">
  35. <a href="http://www.google.com"><button >Click me!</button></a>
  36.  
  37.  
  38. <table style="border: solid;">
  39. <tr> <td style="color: red;">Socket1</td> <td>Socket2</td> </tr>
  40. <tr> <td>Socket3</td> <td>Socket4</td> </tr>
  41. </table>
  42. <text id="generatedText"></text>
  43. </body>
  44.  
  45. <script>
  46. var a = 5;
  47. var b = 3;
  48. var sum = a + b;
  49. $("#generatedText").html(sum);
  50. </script>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement