Hyperhacker

Untitled

Apr 23rd, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Money Heist</title>
  6. <style>
  7.  
  8. body, html {
  9. height: 100%;
  10. margin: 0;
  11. }
  12. .background {
  13. background-image: url("https://wallpaperaccess.com/full/1103717.jpg");
  14. height: 100%;
  15. background-position: center;
  16. background-repeat: no-repeat;
  17. background-size: cover;
  18. }
  19. * {
  20. box-sizing: border-box;
  21. }
  22.  
  23. .column {
  24. float: left;
  25. width: 34.33%;
  26. padding: 3px;
  27. border-radius: 50%;
  28. }
  29. .row::after {
  30. content: "";
  31. clear: both;
  32. display: table;
  33. }
  34. .rio {
  35. float: left;
  36. margin: auto;
  37. width: 30%;
  38. padding: 10px
  39. }
  40.  
  41. .scrolldown {
  42. background-image: url("https://wallpaperaccess.com/full/1103717.jpg");
  43. background-color: white;
  44. }
  45. .centered {
  46. position: absolute;
  47. top: 50%;
  48. left: 50%;
  49. transform: translate(-50%, -50%);
  50. background-color: black;
  51. font-size: 30px;
  52. color: white;
  53. padding: 50px;
  54. border: white;
  55. }
  56. h1 {
  57. background-color: white;
  58. text-align: center;
  59. font-family: fantasy;
  60. border: 15px solid black;
  61. margin-top: -10px;
  62. }
  63.  
  64. /* calling by it's id beks | pwed mo specify by tag name#id or rekta id nlang */
  65. #bluejab {
  66. background-color: white;
  67. color: gold;
  68. font-size: 30px;
  69. }
  70. p#green {
  71. color: green;
  72. font-size: 30px;
  73. }
  74. /* calling by it's class beks | pwed mo specify by tag name.class or rekta class nlang */
  75. .tomorrow {
  76. color: deepskyblue;
  77. font-size: 30px;
  78. }
  79. p.now {
  80. color: deeppink;
  81. font-size: 30px;
  82. }
  83. </style>
  84. </head>
  85. <body>
  86. <div class="background"></div>
  87. <h1>Money Heist</h1>
  88. <div class="row">
  89. <div class="column">
  90. <img src="https://static1.srcdn.com/wordpress/wp-content/uploads/2020/03/nairobi-casa-de-papel-partie-4-e1583935363346.jpg?q=50&fit=crop&w=740&h=370" alt="Nairobi" style="width:100%">
  91. </div>
  92. <div class="column">
  93. <img src="https://pm1.narvii.com/6813/f19e5abcfc1113c90575e0e93aa78e3c939eeb33v2_00.jpg" alt="BERLIN" style="width:90%">
  94. </div>
  95. <div class="rio">
  96. <img src="https://moneyheistseason4.com/wp-content/uploads/2020/01/Rio.jpg" alt="Rio" style="width:90%">
  97. </div>
  98. </div>
  99. <div class="centered">Want more info bitch? Scroll down!</div>
  100. </div>
  101. </body>
  102. </html>
Advertisement
Add Comment
Please, Sign In to add comment