Advertisement
Guest User

Untitled

a guest
Jan 27th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.00 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta name="viewport" content="width-device-width, initelal-scale=1">
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. <link rel="stylesheet" type="text/css" href="css/fontello.css">
  8.  <script>
  9.  $( document ).ready(function() {
  10.             $("#produkty").click(function() {
  11.                 $( "#gry").slideToggle( "50", function() {
  12.                  
  13.                 });
  14.             });
  15. });
  16.  $( document ).ready(function() {
  17.             $("#newsy").click(function() {
  18.                 $( "#foot").slideToggle( "30", function() {
  19.                  
  20.                 });
  21.             });
  22.            
  23. });
  24.  </script>
  25. </head>
  26. <body>
  27.  
  28. <div id="warper">
  29.     <div id="logo">
  30.     <a href="index.html"><img src="logo.png" height="210px" width="300px"></a>
  31.     </div>
  32.  
  33.     <div id="menu">
  34.  
  35.         <ol>
  36.             <li><a href="#">Strona Główna</a></li>
  37.             <li><a href="#" id="produkty">Gry</a></li>
  38.             <li><a href="#">O nas</a></li>
  39.             <li><a href="#">Sklep</a></li>
  40.             <li><a href="#">Kontakt</a></li>
  41.  
  42.           </ol>
  43.     </div>
  44.     <div id="gry">
  45.    
  46.     </div>
  47.     <div id="posty">
  48.     <?php
  49.     require_once("post.php");
  50.     ?>
  51.     <div id="content">
  52.  
  53.     </div>
  54.     </div>
  55.    
  56.     <div id="foot">
  57.    
  58.     <div id="social">
  59.     <a href="https://www.facebook.com/weachkesterstudio/" target="_blank"><div class="fb" ><i class="icon-facebook"></i></div></a>
  60.     <a href="https://www.youtube.com/channel/UCLZQxoCMnB9-IO9cJI1gdkw" target="_blank"><div class="yt" ><i class="icon-youtube"></i></div></a>
  61.     <a href="https://www.instagram.com/weachkesterstudo/" target="_blank"><div class="insta" ><i class="icon-instagram-filled"></i></div></a>
  62.                            
  63.    
  64.    
  65.  
  66.     </div>
  67.    
  68.     </div>
  69.     <div id="newsy">
  70.     Gdzie nas znaleźć?
  71.    
  72.     </div>
  73. </div>
  74.   </body>
  75.   </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement