Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=pl>
  3. <head>
  4. <meta charset=utf-8>
  5. <title>Egzamin js</title>
  6. <style>
  7. #baner{
  8. margin:0 auto;
  9. display:block;
  10. text-align:center;
  11. width:1000px;
  12. height:100px;
  13. }
  14. #lewy{
  15. width:40%;
  16. background-color:salmon;
  17. }
  18. #prawy{
  19. width:60%;
  20. background-color:cyan;
  21. }
  22. #lewy,#prawy{
  23. float:left;}
  24. #ifr{
  25. width:100%;
  26. height:150px;
  27. border-width:1px;
  28. }
  29. #obejma{
  30. width:1000px;
  31. margin: 0 auto;
  32. }
  33. ul{
  34. list-style-type:none;
  35. }
  36. a{
  37. text-decoration:none;
  38. }
  39. a:link,hover,visited,active{
  40. color:brown;
  41. font-size:16pt;
  42. font-weight:bold;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div id=obejma>
  48. <div id=baner>
  49. <img src="obrazek.png">
  50. </div>
  51. <div id=lewy>
  52. <p>Menu</p>
  53. <ul>
  54. <li><a id=a1 href="opis.txt">Opis</a></li>
  55. <br>
  56. <li><a id=a2 href="jakatoliczba.html">Jaka to liczba</a></li>
  57. <br>
  58. <li><a id=a3 href="liczbyzzakresu.html">Liczby całkowite z zakresu</a></li>
  59. </ul>
  60. </div>
  61. <div id=prawy>
  62. <iframe id=ifr src=""></iframe>
  63. </div>
  64. </div>
  65. <script>
  66. "use strict";
  67. window.onload=function(){
  68. document.getElementById("a1").onclick=function(){
  69. document.getElementById("ifr").src="opis.txt";
  70. return false;
  71. }
  72. document.getElementById("a3").onclick=function(){
  73. document.getElementById("ifr").src="liczbyzzakresu.html";
  74. return false;
  75. }
  76. document.getElementById("a2").onclick=function(){
  77. document.getElementById("ifr").src="jakatoliczba.html";
  78. return false;
  79. }
  80. }
  81. </script>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement