Advertisement
xVoice

HTML

Mar 11th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="pl">
  3. <head>
  4.  
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7.  
  8. <title>Voice Games</title>
  9.  
  10. <meta name="description" content="Strona internetowa kanału YouTube Voice Games" />
  11. <meta name="keywords" content="Voice Games" />
  12.  
  13. <link href="style.css" rel="stylesheet" type="text/css" />
  14. <link href='http://fonts.googleapis.com/css?family=Lato:400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
  15.  
  16. <link href="css/fontello.css" rel="stylesheet" type="text/css" />
  17.  
  18. <script src="jquery-1.11.3.min.js"></script>
  19.  
  20. <script type="text/javascript" src="timer.js"></script>
  21.  
  22. </head>
  23.  
  24. <body onload="odliczanie();">
  25.  
  26. <div class="wrapper">
  27.  
  28. <div class="header">
  29. <div id="film">
  30. <div id="intro">
  31. <!-- Tutaj plik z komputera -->
  32. </div>
  33. </div>
  34.  
  35. <div id="czas" >
  36. <div id="dzien"></div>
  37. <div id="godzina"></div>
  38. </div>
  39. <div class="logo">
  40. <img src="logo.png" /></div>
  41. <div style="clear:both;"></div>
  42. </div>
  43.  
  44. <div class="nav">
  45.  
  46. <ol>
  47. <li><a href="#">Strona główna</a></li>
  48. <li><a href="#">Filmy</a>
  49. <ul>
  50. <li><a href="#">Ball3D</a></li>
  51. <li><a href="#">Minecraft</a></li>
  52. <li><a href="#">Inne Gry</a></li>
  53. <li><a href="#">Inne Filmy</a></li>
  54. </ul>
  55. </li>
  56. <li><a href="#">Grupa</a>
  57. <ul>
  58. <li><a href="#">Facebook</a></li>
  59. </ul>
  60. </li>
  61. <li><a href="#">Lajwy</a>
  62. <ul>
  63. <li><a href="#">Twich</a></li>
  64. </ul>
  65. </li>
  66. <li><a href="#">O mnie</a>
  67. <ul>
  68. <li><a href="#">Kim jestem</a></li>
  69. <li><a href="#">Skąd się wziąłem na YT</a></li>
  70. <li><a href="#">Zarobki</a></li>
  71. </ul>
  72. </li>
  73. <li><a href="#">Pomoc</a></li>
  74. </ol>
  75.  
  76. </div>
  77.  
  78. <div class="content">
  79. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget rhoncus mi, in vestibulum lorem. Nulla urna mauris, egestas nec erat vel, tempus ullamcorper dolor. Maecenas eu mattis arcu. Aliquam dapibus quis risus eget consequat. Curabitur eu convallis urna, vitae scelerisque est. Nunc eget posuere urna. Nulla facilisi. Phasellus blandit eleifend aliquet. Curabitur porttitor pharetra pretium. Nam ac eros laoreet, consequat felis at, auctor metus.</p>
  80. </div>
  81.  
  82. <div class="socials">
  83. <div class="socialdivs">
  84. <div class="fb">
  85. <a href="https://www.facebook.com" class="tilelink" target="_blank"><i class="icon-facebook"></i></a>
  86. </div>
  87. <div class="yt">
  88. <a href="https://www.youtube.com/channel/UCnQ4E2OxdhNasUB4kQgkWeg" class="tilelink" target="_blank"><i class="icon-youtube"></i></a>
  89. </div>
  90. <div style="clear:both"></div>
  91. </div>
  92. </div>
  93.  
  94. <div class="footer">VoiceGames.pl &copy; 2017 Najlepszy polski kanaӠna YouTubie! Strona tworzona przez Vojsa! ;-]</div>
  95. </div>
  96.  
  97. <script>
  98.  
  99. $(document).ready(function() {
  100. var NavY = $('.nav').offset().top;
  101.  
  102. var stickyNav = function(){
  103. var ScrollY = $(window).scrollTop();
  104.  
  105. if (ScrollY > NavY) {
  106. $('.nav').addClass('sticky');
  107. } else {
  108. $('.nav').removeClass('sticky');
  109. }
  110. };
  111.  
  112. stickyNav();
  113.  
  114. $(window).scroll(function() {
  115. stickyNav();
  116. });
  117. });
  118.  
  119. </script>
  120.  
  121. </body>
  122. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement