Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.80 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. function show(shown, hidden) {
  5.   document.getElementById(shown).style.display='block';
  6.   document.getElementById(hidden).style.display='none';
  7.   return false;
  8. }
  9. </script>
  10. <style type="text/css">
  11. .kontener{
  12. width: 978px;
  13. margin: auto;
  14. }
  15.  
  16. .kol{
  17. width: 30%;
  18. margin-left: 2%;
  19. float: left;
  20. height: 300px;
  21. color: #fff;
  22. text-align: center;
  23. line-height: 300px;
  24. }
  25.  
  26. .srodek {
  27.   display: inline-block;
  28.   vertical-align: middle;
  29.   font-size: 30px;
  30. }
  31.  
  32. html .kol:hover{
  33. opacity: 0.8;
  34.  
  35. }
  36.  
  37. html .srodek:hover{
  38. font-size: 150%;
  39. }
  40.  
  41. .naglowek{
  42. font-size: 40px;
  43. color: #fff;
  44. }
  45.  
  46. .tresc{
  47. font-size: 20px;
  48. color: #fff;
  49. }
  50. </style>
  51. </head>
  52. <body bgcolor="#000" background="tlo3.jpg">
  53.  
  54. <div align="middle" style="margin-bottom: 100px;">
  55.     <span style="text-align: center; font-size: 50px; font-family: AR ESSENCE; color: #fff;">Jakub Hutyra</span>
  56.     <a href="https://www.facebook.com/kuba.hutyra">
  57.         <img src="fb.png" style="float: right; margin-right: 50px;">
  58.         </a>
  59.     <a href="http://www.agh.edu.pl/"><img src="logo_agh.jpg" style="float: left; margin-left: 50px;">
  60.     </a>
  61. </div>
  62.  
  63. <div align="left" style="font-size: 20px; color: #fff; font-family: AHARONI; margin-bottom: 50px;">
  64.     <p style="margin-left: 200px;">Czesć jestem studentem pierwszego roku AGH a dokładniej</p>
  65.         <p style="margin-left:250px;">
  66.         <span style="color: blue;"><strong>mechaniki i budowy maszyn</strong></span> na <strong>wydziale inżynierii mechanicznej i robotyki</strong></span>
  67.         </p>
  68. </div>
  69.  
  70. <div class="kontener" id="Page1">
  71.     <a href="#" onclick="return show('Page2','Page1');"><div class="kol" style="background-color: rgba(255, 255, 255, 0.3); border: 1px dotted #fff;">
  72.     <span class="srodek">chuj</span>
  73.     </div></a>
  74.     <a href="#" onclick="return show('Page3','Page1');"><div class="kol" style="background-color: rgba(62, 99, 174, 0.3); border: 1px dotted #3e63ae;">
  75.     <span class="srodek">ci</span>
  76.     </div></a>
  77.     <a href="#" onclick="return show('Page4','Page1');"><div class="kol" style="background-color: rgba(241, 243, 61, 0.3); border: 1px dotted #f1f33d;">
  78.     <span class="srodek">w dupe</span>
  79.     </div></a>
  80. </div>
  81.  
  82.     <div id="Page2" align="middle" style="display:none;">
  83.         <p class="naglowek">Naglowek 1</p>
  84.         <p class="tresc">Huti lubi czarne chuje</p>
  85.         <a href="#" onclick="return show('Page1','Page2');">Powrot</a>
  86.     </div>
  87.    
  88.     <div id="Page3" align="middle" style="display:none;">
  89.         <p class="naglowek">Naglowek 2</p>
  90.         <p class="tresc">Huti lubi biale chuje i renifery</p>
  91.         <a href="#" onclick="return show('Page1','Page3');">Powrot</a>
  92.     </div>
  93.    
  94.     <div id="Page4" align="middle" style="display:none;">
  95.         <p class="naglowek">Naglowek 3</p>
  96.         <p class="tresc">Huti lubi zolte chuje</p>
  97.         <a href="#" onclick="return show('Page1','Page4');">Powrot</a>
  98.     </div>
  99.    
  100. </body>
  101. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement