Cube
✨ Jabont
<html> <head> <title>Cube</title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; } .wrap{ background:grey } .pl{ } .p1{ background:pink; } </style> </head> <body> <div class="wrap"> <div class="pl p1"></div> <div class="pl p2"></div> <div class="pl p3"></div> <div class="pl p4"></div> <div class="pl p5"></div> <div class="pl p6"></div> </div> </body> </html>