Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Webové stranky - Derka Patrik</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" type="text/css" media="screen" href="main.css">
  9. <script src="main.js"></script>
  10. </head>
  11. <style>
  12. body {
  13.  
  14. background-image: url("backgroundjoj.jpg");
  15. background-repeat: no-repeat;
  16. background-size: 1920px 1080px;
  17. margin: 0;
  18.  
  19.  
  20. }
  21.  
  22. ul {
  23. list-style-type: none;
  24. width: 100%;
  25. padding: 0 0;
  26. overflow: hidden;
  27. background-color:#555;
  28. box-shadow:0.2rem 0.1rem 1rem #111;
  29. }
  30.  
  31. li {
  32.  
  33. float:left;
  34.  
  35. }
  36.  
  37. li a {
  38.  
  39. display: block;
  40. color: #fff;
  41. text-align:center;
  42. padding: 14px 16px;
  43. text-decoration: none;
  44. text-shadow: 0.09rem 0.08rem 0.02rem #111;
  45. font-family: Helvetica;
  46. letter-spacing: 0.25rem;
  47.  
  48. }
  49.  
  50. li a:hover {
  51.  
  52. background-color: #111;
  53. }
  54.  
  55. .active {
  56.  
  57. background-color: limegreen;
  58.  
  59. }
  60.  
  61. li.leva {
  62. float:right;
  63. }
  64.  
  65. h1 {
  66. font-size: 80px;
  67. padding-top: 200px;
  68. text-align: center;
  69. color: white;
  70. font-family: inherit;
  71. text-shadow: 0.09rem 0.08rem 0.02rem #111;
  72. }
  73. img.logo {
  74. display: block;
  75. margin-left: auto;
  76. margin-right: auto;
  77. }
  78.  
  79. h2 {
  80. display: block;
  81. font-size: 20px;
  82. text-align:center;
  83. color:white;
  84. font-family: Helvetica;
  85. text-shadow: 0.09rem 0.08rem 0.02rem #111;
  86. letter-spacing: 14px;
  87. }
  88.  
  89. </style>
  90. <body>
  91. <ul>
  92. <li><a href="https://www.google.com">Google</a></li>
  93. <li><a href="https://www.seznam.cz">Seznam</a></li>
  94. <li><a href="https://www.mojebanka.cz">KB</a></li>
  95. <li><a href="https://www.youtube.com">YouTube</a></li>
  96. <li class="leva"><a class ="active" href="#">O mně</a></li>
  97. </ul>
  98.  
  99. <h1>SEALCOMPUTERS</h1>
  100. <h2>VIDEO EDITING & PROGRAMMING</h2>
  101. <img class="logo" src="logo.gif" alt="lachtanek">
  102. </body>
  103. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement