Modern Minimalist Media Tile - 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>Modern Minimalist Media Tile</title> <style> body { font-family: 'Roboto', Arial, sans-serif; background-color: #e8eaf6; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .media-tile { background-color: white; border-radius: 6px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); overflow: hidden; width: 250px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .media-tile:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .media-tile img { width: 100%; height: auto; display: block; } .media-tile .content { padding: 15px; text-align: center; } .media-tile h2 { margin: 0 0 10px; font-size: 18px; color: #333; } .media-tile p { margin: 0; color: #666; font-size: 14px; line-height: 1.5; } .media-tile .actions { margin-top: 15px; display: flex; justify-content: center; } .media-tile .actions button { background-color: #3f51b5; color: white; border: none; padding: 8px 16px; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; } .media-tile .actions button:hover { background-color: #303f9f; } </style> </head> <body> <div class="media-tile"> <img src="https://via.placeholder.com/250" alt="Media Image"> <div class="content"> <h2>Modern Minimalist Media Tile</h2> <p>A minimalist design that emphasizes simplicity and elegance, perfect for showcasing media in a clean format.</p> <div class="actions"> <button>See More</button> </div> </div> </div> </body> </html>