Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. *{
  2. background-color: #fff;
  3. }
  4. h1,h2{
  5. background-color: #cccc99;
  6.  
  7. }
  8. div {
  9. background-color: #ff0000;
  10.  
  11. }
  12. div p {
  13. background-color: blue;
  14. }
  15. p{
  16. background-color: #00ff00;
  17.  
  18. }
  19. p{
  20. font-size: 1em;
  21. border-style: solid;
  22. border-width: 3px;
  23. background-color: gray;
  24. }
  25. #content{
  26. background-color: pink;
  27. }
  28. ul{
  29. list-style: none;
  30. background-color: #0cf34d;
  31. }
  32. ul li{
  33. background-color: #9f99fc;
  34. padding: 10px;
  35. margin: 25px;
  36. border-style: groove;
  37. border-width: 2px;
  38. border-color: black;
  39. }
  40. ul li a{
  41. background-color: #re;
  42. }
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. <!DOCTYPE html>
  56. <html lang="en">
  57. <head>
  58. <meta charset="UTF-8">
  59. <link rel="stylesheet" href="style.css" type="text/css">
  60. <!-- <link rel="stylesheet" href="style2.css" type="text/css"> -->
  61. <title>Strona</title>
  62. </head>
  63. <body>
  64. <h1>Heading1</h1>
  65. <h2>Heading2</h2>
  66. <div id="content" style="background-color:pink;">To jest div
  67. </div>
  68. <p>Paragraf</p>
  69. <div>
  70. <form action="Post">
  71. <p>
  72. Im not a child eleent
  73. </p>
  74. </form>
  75. <p>
  76. Im child element
  77. <em>emphasis</em>
  78. <strong>Strong</strong>
  79. </p>
  80. </div>
  81. <ul>
  82. <li>
  83. <a href="http://www.trojmiasto.pl">Trojmiasto</a>
  84. </li>
  85. <li>
  86. <a href="http://www.google.pl">Gogle</a>
  87. </li>
  88. <li>
  89. <a href="http://www.wp.pl">WP</a>
  90. </li>
  91. </ul>
  92.  
  93. </body>
  94. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement