Advertisement
kikosiak

Untitled

Jun 6th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.       <head>
  4.           <meta charset="UTF-8">
  5.           <title>G&G CarRent - Wypożyczalnia samochodów</title>
  6.          <link rel="stylesheet" href="style.css">
  7.      <script>
  8.          function counter() {
  9.              var n = localStorage.getItem('on_load_counter');
  10.               if (n === null) {
  11.                   n = 0;
  12.               }
  13.               n++;
  14.               localStorage.setItem("on_load_counter", n);
  15.               document.getElementById('cntr').innerHTML = n;
  16.           }
  17.   </script>  
  18.    
  19.     </head>
  20.       <body onload="counter()">
  21.           <div id="header">
  22.                 <a href="index.html"><img src="logo.png"/></a>
  23.           </div>
  24.          
  25.           <div id = "aside">
  26.             <ul>
  27.                 <li><a href="index.html">Strona Główna</a></li>
  28.                 <li><a href="flota.html">Flota</a></li>
  29.                 <li><a class="active" href="ofirmie.html">O firmie</a></li>
  30.                 <li><a href="kontakt.html">Kontakt</a></li>
  31.             </ul>
  32.           </div>
  33.          
  34.           <div id = "main">
  35.               <br><h1>Wypożyczanie samochodów:</h1>
  36. <iframe width="560" height="315" src="https://www.youtube.com/embed/a32wCCeaERo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  37.              
  38.              
  39.           </div>
  40.          
  41.           <div id = "footer">
  42.               <br>
  43.             Autorzy: Karol Głuch, Michał Galas.<br>
  44.             Copyright &copy 2020 G&G CarRent. Wszelkie prawa zastrzeżone.
  45.            <p>Liczba wyswietleń: <span id="cntr">0</span></p>  
  46.          </div>
  47.          
  48.      </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement