Advertisement
kikosiak

Untitled

Jun 6th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.86 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 href="ofirmie.html">O firmie</a></li>
  30.                 <li><a class="active" href="kontakt.html">Kontakt</a></li>
  31.             </ul>
  32.           </div>
  33.          
  34.           <div id = "main">
  35.               <br><h1>Kontakt:</h1>
  36.                   <form action="index.html">
  37.     <input type="text" id="imie" name="imie" placeholder="Twoje imie..">
  38.     <br>
  39.     <input type="text" id="nazwisko" name="nazwisko" placeholder="Twoje nazwisko..">
  40.  
  41.         <textarea id="temat" name="temat" placeholder="Twoj temat.." style="height:200px"></textarea>
  42. <br>
  43.     <input type="submit" value="Wyslij wiadomosc">
  44.   </form>
  45.              
  46.              
  47.           </div>
  48.          
  49.           <div id = "footer">
  50.               <br>
  51.             Autorzy: Karol Głuch, Michał Galas.<br>
  52.             Copyright &copy 2020 G&G CarRent. Wszelkie prawa zastrzeżone.
  53.            <p>Liczba wyswietleń: <span id="cntr">0</span></p>
  54.  
  55.          </div>
  56.          
  57.      </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement