Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <!doctype html/>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>nut</title>
  6. <style>
  7. body {
  8. background-color: black;
  9. }
  10. #kontener {
  11. background-color: red;
  12.  
  13. width: 1000px;
  14. margin-left: auto;
  15. margin-right: auto;
  16. }
  17. #logo {
  18. background-color: blue;
  19.  
  20. width: 100px;
  21. padding: 10px;
  22.  
  23. text-align: center;
  24. color: white;
  25. }
  26. li {
  27. list-style-type: none;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div id="kontener">
  33. <div id="logo">
  34. <h1><center>Rak</center></h1>
  35. <ol>
  36. <li>Strona głowna</li>
  37. <li>Rejestracja</li>
  38. <li>Kontakt</li>
  39. </ol>
  40. </div>
  41. </div>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement