Guest User

Untitled

a guest
Jul 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. ul {
  5. list-style: none;
  6. padding: 0;
  7. margin: 0;
  8. }
  9. .first, .second, .third{
  10. width:100px;
  11. }
  12. .third {
  13. float: left;
  14. margin-left: 150px;
  15. }
  16. .first #one {
  17. background-color:#00000;
  18. }
  19. .first #two {
  20. background-color:#062253;
  21. }
  22. .first #three {
  23. background-color:#3078C0;
  24. }
  25. .first #four {
  26. background-color:#9CC4E4;
  27. }
  28. .first #five {
  29. background-color:#F0F0F0;
  30. }
  31. .second #one {
  32. background-color:#01002B;
  33. }
  34. .second #two {
  35. background-color:#486060;
  36. }
  37. .second #three {
  38. background-color:#78A8C0;
  39. }
  40. .second #four {
  41. background-color:#D8D8A8;
  42. }
  43. .second #five {
  44. background-color:#C00000;
  45. }
  46. .third #one {
  47. background-color:#333333;
  48. }
  49. .third #two {
  50. background-color:#0077CC;
  51. }
  52. .third #three {
  53. background-color:#FF0044;
  54. }
  55. .third #four {
  56. background-color:#EEDDDD;
  57. }
  58. .third #five {
  59. background-color:#1177CC;
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <ul class="first">
  65. <li id="one"><br></li>
  66. <li id="two"><br></li>
  67. <li id="three"><br></li>
  68. <li id="four"><br></li>
  69. <li id="five"><br></li>
  70. </ul>
  71. <ul class="third">
  72. <li id="one"><br></li>
  73. <li id="two"><br></li>
  74. <li id="three"><br></li>
  75. <li id="four"><br></li>
  76. <li id="five"><br></li>
  77. </ul>
  78. <br><br><br>
  79. <ul class="second">
  80. <li id="one"><br></li>
  81. <li id="two"><br></li>
  82. <li id="three"><br></li>
  83. <li id="four"><br></li>
  84. <li id="five"><br></li>
  85. </ul>
  86. </body>
  87. </html>
Add Comment
Please, Sign In to add comment