Advertisement
Guest User

Untitled

a guest
Jun 21st, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="UTF-8">
  5.     <title>Teoria projektowania obiektowego</title>
  6.     <style>
  7.     html {
  8.     background: url(tlo.jpg) no-repeat center center fixed;
  9.     -webkit-background-size: cover;
  10.     -moz-background-size: cover;
  11.     -o-background-size: cover;
  12.     background-size: cover;
  13.     }
  14.     p {color: white; font-family: Arial;}
  15.     .piatka {font-size: x-large;}
  16.     .siodemka {font-size: 70px; font-weight: bold;}
  17.     ul.circle {list-style-type: circle;}
  18.     li {margin-bottom: 20px; font-size: x-large;}
  19.     #powrot {
  20.     font-size: xx-large;
  21.     font-weight: bold;
  22.     position: fixed;
  23.     bottom: 10px;
  24.     }
  25.     </style>
  26.   </head>
  27.   <body>
  28.  
  29.     <p class="siodemka" style="text-align: center;">
  30.       Linkownia
  31.     </p>
  32.  
  33.     <hr>
  34.  
  35.     <p class="piatka">
  36.       Na tych stronach znajdziesz więcej informacji na temat programowania obiektowego:
  37.     </p>
  38.     <ul class="circle">
  39.       <li>
  40.         <a href="http://pl.wikipedia.org/wiki/Programowanie_obiektowe">Wikipedia</a>
  41.       </li>
  42.       <li>
  43.         <a href="http://cpp0x.pl/kursy/Programowanie-obiektowe-C++/486">Kurs poświęcony programowaniu obiektowemu</a>
  44.       </li>
  45.       <li>
  46.         <a href="http://javastart.pl/static/category/programowanie-obiektowe/">Kurs Java i Android</a>
  47.       </li>
  48.     </ul>
  49.  
  50.     <a href="index.html" id="powrot">Powrót do strony głównej</a>
  51.  
  52.   </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement