Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div class=satu></div>
  2. <div class=dua></div>
  3. <div class=tiga></div>
  4.  
  5. <style>
  6.   body{
  7.     background:#0B2429;
  8.     justify-content:center;
  9.     align-items:center;
  10.     display:flex;
  11.   }
  12.   .satu {
  13.     width: 100px;
  14.     height: 100px;
  15.     background: #F3AC3C;
  16.     transform:rotate(45deg);
  17.     position:relative;
  18.     top:35;
  19.   }
  20.   .dua{
  21.     width: 70px;
  22.     height: 70px;
  23.     background: #998235;
  24.     transform:skew(0deg, -45deg);
  25.     position:absolute;
  26.     top:80;
  27.     left:129;
  28.   }
  29.   .tiga{
  30.     width: 70px;
  31.     height: 70px;
  32.     background: #1A4341;
  33.     transform:skew(0deg, 45deg);
  34.     position:absolute;
  35.     top:80;
  36.     right:131;
  37.   }
  38. </style>