Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div class="left">
  2. <div class="satu"></div>
  3. <div class="dua"></div>
  4. </div>
  5.  
  6. <div class="right">
  7. <div class="tiga"></div>
  8. <div class="empat"></div>
  9. </div>
  10.  
  11. <style>
  12.   body{
  13.     background:#62374e;
  14.   }
  15.   .left{
  16.     float:left;
  17.   }
  18.  
  19.   .right{
  20.     float:right;
  21.   }
  22.   .satu {
  23.     width: 50px;
  24.     height: 50px;
  25.     background: #fdc57b;
  26.     margin-top: 42px;
  27.     margin-left:42px;
  28.   }
  29.  
  30.   .dua{
  31.     width: 50px;
  32.     height: 50px;
  33.     background: #fdc57b;
  34.     margin-top: 100px;
  35.     margin-left:42px;
  36.   }
  37.  
  38.   .tiga{
  39.     width: 50px;
  40.     height: 50px;
  41.     background: #fdc57b;
  42.     margin-top: 42px;
  43.     margin-right:42px;
  44.   }
  45.  
  46.   .empat{
  47.     width: 50px;
  48.     height: 50px;
  49.     background: #fdc57b;
  50.     margin-top: 100px;
  51.     margin-right:42px;
  52.   }
  53. </style>
  54.