Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Teoria projektowania obiektowego</title>
- <style>
- html {
- background: url(tlo.jpg) no-repeat center center fixed;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- }
- p {color: white; font-family: Arial;}
- .piatka {font-size: x-large;}
- .siodemka {font-size: 70px; font-weight: bold;}
- ul.circle {list-style-type: circle;}
- li {margin-bottom: 20px; font-size: x-large;}
- #powrot {
- font-size: xx-large;
- font-weight: bold;
- position: fixed;
- bottom: 10px;
- }
- </style>
- </head>
- <body>
- <p class="siodemka" style="text-align: center;">
- Linkownia
- </p>
- <hr>
- <p class="piatka">
- Na tych stronach znajdziesz więcej informacji na temat programowania obiektowego:
- </p>
- <ul class="circle">
- <li>
- <a href="http://pl.wikipedia.org/wiki/Programowanie_obiektowe">Wikipedia</a>
- </li>
- <li>
- <a href="http://cpp0x.pl/kursy/Programowanie-obiektowe-C++/486">Kurs poświęcony programowaniu obiektowemu</a>
- </li>
- <li>
- <a href="http://javastart.pl/static/category/programowanie-obiektowe/">Kurs Java i Android</a>
- </li>
- </ul>
- <a href="index.html" id="powrot">Powrót do strony głównej</a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement