Advertisement
ZEdKasat

Untitled

Nov 18th, 2021
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <style>
  6. body {
  7. background-color: rgb(77, 68, 77);
  8. }
  9.  
  10. .article {
  11. background-color: aquamarine;
  12. margin: 15px;
  13. padding: 5px;
  14. border-radius: 5px;
  15. }
  16.  
  17. .barber {
  18. background-color: bisque;
  19. color: darkblue;
  20. }
  21.  
  22. #scientist {
  23. color: darkgreen;
  24. grid-area: scientist;
  25. }
  26.  
  27. #scientist:hover{
  28. background-color: red;
  29. }
  30.  
  31. #container{
  32. display: grid;
  33. gap: 5px;
  34. grid-template-areas: "windows terrorist scientist"
  35. "mutant terrorist x"
  36. "chimney terrorist x"
  37.  
  38. }
  39.  
  40.  
  41. #window{
  42. grid-area: windows;
  43. }
  44. #mutant{
  45. grid-area: mutant;
  46. }
  47. #chimney{
  48. grid-area: chimney;
  49. }
  50. #terrorist{
  51. grid-area: terrorist;
  52. }
  53.  
  54.  
  55. /* css selectors */
  56.  
  57. </style>
  58. <title>Document</title>
  59. </head>
  60.  
  61. <body>
  62. <div id="container">
  63. <div class="article" id="chimney">
  64. <h1>Man falls into chimney!</h1>
  65. <p>Recently, a 24 year old man named Maka Kaka fell into a chimney.</p>
  66. </div>
  67.  
  68. <div class="article" id="window">
  69. <h1>Windowcleaner breaks 100 year old window!</h1>
  70. <p>On the 16th of Januray, a senior cleaner that cleaned windows for a long time, got into a tragic window
  71. cleaning accident where he broke a 100 year old window passed down from generations.</p>
  72. </div>
  73. <div class="article" id="mutant">
  74. <h1>Mutant lion developed by Russian Military</h1>
  75. <p>Russia has recently acknowledged the claims that they are developing a mutant lion. They said that these
  76. claims were true.</p>
  77. </div>
  78. <div class="article" id="scientist">
  79. <h1>Scientists discover new element!</h1>
  80. <p>On 21th October 2021, an element known as Nixionide was discovered. It is known to have elements that can
  81. link to explosions. Government officials may use this to their advantage.</p>
  82. </div>
  83. <div id="terrorist">
  84. <div class="article barber">
  85. <h1>MAN BLOWS UP BARBER SHOP!</h1>
  86. <p>Today, on 17th November 2021, a man used Nixionide to blow up a barber shop after given a haircut that he
  87. claimed: "was what he wanted, but there was one hair missing.</p>
  88. </div>
  89. <div class="article barber">
  90. <h1>MAN BLOWS UP ANOTHER BARBER SHOP!</h1>
  91. <p>After thinking he could get that one hair back, 19 year old Matthew Thomas thought it was a good idea to
  92. ask a barber shop to get one hair off the floor and glue it onto his head. After being rejected, he
  93. found out that scientists dont known that Nixionide mixed with Hydrogen Oxygen could create a "water
  94. bomb" He then blew up the barber shop using the Water Bomb.</p>
  95. </div>
  96. <div class="article barber">
  97. <h1>BARBER SHOP TERRORIST DEAD!</h1>
  98. <p>The man that commited Terrorism on two barber shops has been shot dead when he was attempting to blow up
  99. a wig shop for not having a single hair. Police found out that he was obsessed with his hair, according
  100. to his family, he will be buried bald.</p>
  101. </div>
  102. </div>
  103. </div>
  104. </body>
  105.  
  106. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement