Playful Tiles - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Playful Tiles</title> <style> body { font-family: 'Arial', sans-serif; background: #f39c12; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .grid-playful { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 20px; background: #ffffff; border-radius: 10px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); } .grid-playful .grid-item { background: #e74c3c; border-radius: 10px; padding: 20px; text-align: center; color: #fff; font-size: 1.5em; transition: transform 0.3s ease; } .grid-playful .grid-item:hover { transform: rotate(10deg); } </style> </head> <body> <div class="grid-playful"> <div class="grid-item">Fun 1</div> <div class="grid-item">Fun 2</div> <div class="grid-item">Fun 3</div> <div class="grid-item">Fun 4</div> </div> </body> </html>