Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. ------------HTML
  2. <!DOCTYPE html>
  3. <html lang="pl">
  4. <head>
  5. <meta charset="UTF-8">
  6. <style>
  7. body{
  8. padding: 0px;
  9. margin: 0px;
  10. }
  11. .container{
  12. display: flex;
  13. flex-wrap: wrap;
  14. }
  15. #a1{
  16. display: flex;
  17. height: 80px;
  18. background-color: red;
  19. width: 100%;
  20. }
  21. #a2{
  22. width: 25%;
  23. display: flex;
  24. height: 320px;
  25. background-color: blue;
  26. }
  27. #a3{
  28. display: flex;
  29. width: 50%;
  30. align-items: center;
  31. background-color: green;
  32. flex-wrap: wrap;
  33. justify-content: space-around;
  34. height: 320px;
  35.  
  36. }
  37. #banner{
  38. background-color: pink;
  39. margin: 10px;
  40. padding: 5px;
  41. align-items: center;
  42. }
  43. #a3 p{
  44. background-color: yellow;
  45. justify-content: center;
  46. padding: 8px;
  47. font-size: 27px;
  48. display: flex;
  49. }
  50. #a4{
  51. width: 25%;
  52. height: 320px;
  53. background-color: blue;
  54. display: flex;
  55. justify-content: center;
  56. }
  57. #a5{
  58. width: 100%;
  59. display: flex;
  60. height: 80px;
  61. background-color: gray;
  62. justify-content: flex-start;
  63. }
  64. #a5 p{
  65. background-color: #5c5c5c;
  66. display: flex;
  67. align-items: center;
  68. padding: 5px;
  69. }
  70.  
  71. </style>
  72. </head>
  73. <body>
  74. <div class="container">
  75. <div id="a1">h fkodkjbfbhvvt</div>
  76. <div id="a2"> dfgfgh shsf dddd z
  77. </div>
  78. <div id="a3">
  79. <p>adh sudj</p><p>zsgsdhjib sdiufuys uhs</p><p>bjgds dsbibi</p><p>dgkjbgs bufgbui</p><p>agsgkj sgdbugui</p>
  80. </div>
  81. <div id="a4">
  82. <div id="banner">ZVGBGDFSshdfhg</div>
  83. </div>
  84. <div id="a5">
  85. <p>abkfgyioFEyivF bjsdbui</p>
  86. </div>
  87. </div>
  88. </body>
  89. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement