Advertisement
Guest User

Strona

a guest
Dec 13th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Non omnis moriar. Rekrutacja do drużyny CS online.</title>
  6. <meta name="description" content="Aktualna lista osób drużyny głównej i rezerwowej CS online">
  7. <meta name="keywords" content="lista osób, drużyna CS, rozgrywki online">
  8. <meta name="author" content="Ola">
  9. <meta http-equiv="X-Ua-Compatible" content="IE edge,chrome=1">
  10. <link rel="stylesheet" href="main.css">
  11. <script src="code.js"></script>
  12.  
  13. </head>
  14.  
  15. <body>
  16.  
  17. <div class="container">
  18. <div class="logo"></div>
  19.  
  20. <img src="img/blackopal.png" alt="logo">
  21. <h1>Nagłówek testowy</h1>
  22.  
  23. <div class="menu"></div>
  24.  
  25. <div class="nawigacja"></div>
  26. <form action="login.php" method="post">
  27. <label for="imie">Wybierz postać</label>
  28. <select id="imie">
  29. <option value="m">Mario</option>
  30. <option value="l">Luis</option>
  31. <option value="y">Yali</option>
  32. </form>
  33.  
  34.  
  35. <div class="content"></div>
  36. <div class="tabela graczy"></div>
  37. <div class="stopka"></div>
  38.  
  39. <div class="nowy"></div>
  40.  
  41.  
  42. </body>
  43. </html>
  44.  
  45. body
  46. {
  47. background-image: url(img/tactile_noise.png);
  48. margin: 0;
  49. }
  50.  
  51. .container
  52. {
  53. background-color: white;
  54. width: 800px;
  55. height: 500px;
  56. margin: auto;
  57. text-align: center;
  58. }
  59.  
  60. .logo
  61. {
  62. background-color: violet;
  63. width: 800px;
  64. height: 100px;
  65. margin: auto;
  66. }
  67.  
  68.  
  69.  
  70. .nawigacja
  71. {
  72. background-color: coral;
  73. width: 200px;
  74. height: 300px;
  75. margin: auto;
  76. float: left
  77. }
  78.  
  79. .content
  80. {
  81. background-color: grey;
  82. width: 400px;
  83. height: 300px;
  84. margin: auto;
  85. float: left
  86. }
  87.  
  88. .tabela
  89. {
  90. background-color: pink;
  91. width: 200px;
  92. height: 300px;
  93. margin: auto;
  94. float: left
  95. }
  96.  
  97. .stopka
  98. {
  99. background-color: RebeccaPurple;
  100. width: 800px;
  101. height: 100px;
  102. }
  103.  
  104. h1
  105. {
  106. font-family: Arial;
  107. font-size: 22px;
  108. font-weight: 700;
  109. font-style: italic;
  110. text-align: center;
  111. text-transform: uppercase;
  112. letter-spacing: 1px;
  113. }
  114.  
  115. .nowy
  116. {
  117. background-color: babyblue;
  118. width: 200;
  119. height: 250;
  120. float: left;
  121. margin: auto;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement