Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3.  
  4. <head>
  5.   <meta charset="UTF-8">
  6.   <link rel="stylesheet" href="sheet.css" media="screen" type="text/css">
  7.   <title>
  8.     Tytuł strony
  9.   </title>
  10.   <script type="text/javascript">
  11.     function deleteStyle() {
  12.       document.getElementById("header").className = ""
  13.       document.getElementById("nav").className = ""
  14.       document.getElementById("main").className = ""
  15.       document.getElementById("aside").className = ""
  16.       document.getElementById("footer").className = ""
  17.     }
  18.  
  19.     function setStyle() {
  20.       document.getElementById("header").className = "azure";
  21.       document.getElementById("nav").className = "azure margin fnav";
  22.       document.getElementById("main").className = "azure margin fmain";
  23.       document.getElementById("aside").className = "azure faside";
  24.       document.getElementById("footer").className = "azure ffooter";
  25.     }
  26.   </script>
  27. </head>
  28.  
  29. <body>
  30.  
  31.   <header id="header" class="azure">
  32.     <!-- Page title -->
  33.     <!-- Background color: #EFF -->
  34.     <!-- Border color: #A8A8A8 -->
  35.     <button type="button" onclick="deleteStyle()">Usun style</button>
  36.     <button type="button" onclick="setStyle()">Dodaj style</button>
  37.     <h1>
  38.       Tytuł strony
  39.     </h1>
  40.   </header>
  41.  
  42.   <nav id="nav" class="azure margin fnav">
  43.     <!--Tutaj menu nawigacyjne / Here the navigation menu -->
  44.     <!-- left & right margin: 25px -->
  45.  
  46.     <ul>
  47.       <li>
  48.         <a href="">Element 1</a>
  49.       </li>
  50.  
  51.       <li>
  52.         <a href="">Element 2</a>
  53.       </li>
  54.     </ul>
  55.   </nav>
  56.   <!-- Tutaj treść panelu bocznego / Here the content of the side panel-->
  57.  
  58.   <aside id="aside" class="azure faside">
  59.     <h1>
  60.       Panel boczny
  61.     </h1>
  62.  
  63.     <h2>
  64.       Ciekawe odsyłacze
  65.     </h2>
  66.  
  67.     <ul>
  68.       <li>
  69.         <a href="">Odsyłacz 1</a>
  70.       </li>
  71.  
  72.       <li>
  73.         <a href="">Odsyłacz 2</a>
  74.       </li>
  75.  
  76.       <li>
  77.         <a href="">Odsyłacz 3</a>
  78.       </li>
  79.     </ul>
  80.   </aside>
  81.  
  82.   <main id="main" class="azure margin fmain">
  83.     <!--Tutaj treść strony / Here the content of the page -->
  84.  
  85.     <h1 class="animate">
  86.       Treść strony
  87.     </h1>
  88.  
  89.     <pre>
  90. Natenczas Wojski chwycił na taśmie przypięty
  91. Swój róg bawoli, długi, cętkowany, kręty
  92. Jak wąż boa, oburącz do ust go przycisnął,
  93. Wzdął policzki jak banię, w oczach krwią zabłysnął,
  94. Zasunął wpół powieki, wciągnął w głąb pół brzucha
  95. I do płuc wysłał z niego cały zapas ducha,
  96. I zagrał: róg jak wicher, wirowatym dechem
  97. Niesie w puszczę muzykę i podwaja echem.
  98.  
  99. Umilkli strzelcy, stali szczwacze zadziwieni
  100. Mocą, czystością, dziwną harmoniją pieni.
  101. Starzec cały kunszt, którym niegdyś w lasach słynął,
  102. Jeszcze raz przed uszami myśliwców rozwinął;
  103. Napełnił wnet, ożywił knieje i dąbrowy,
  104. Jakby psiarnię w nie wpuścił i rozpoczął łowy.
  105.  
  106. Bo w graniu była łowów historyja krótka:
  107. Zrazu odzew dźwięczący, rześki: to pobudka;
  108. Potem jęki po jękach skomlą: to psów granie;
  109. A gdzieniegdzie ton twardszy jak grzmot: to strzelanie.
  110.   </pre>
  111.   </main>
  112.  
  113.   <footer id="footer" class="azure ffooter">
  114.     <!-- Tutaj treść stopki / Here the content of the footer -->
  115.     <a href="mailto:your.email.address">Imię Nazwisko</a>
  116.   </footer>
  117.   <!--<script type="text/javascript" src="cw02.js"></script> -->
  118. </body>
  119.  
  120. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement