Professional Columns - 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>Professional Columns</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f0f2f5; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { display: flex; justify-content: space-around; align-items: center; width: 80%; background: #ffffff; box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-radius: 10px; overflow: hidden; } .column { flex: 1; padding: 20px; margin: 10px; text-align: center; transition: transform 0.3s ease; background: linear-gradient(145deg, #ececec, #ffffff); border-radius: 10px; box-shadow: 5px 5px 10px #d1d1d1, -5px -5px 10px #ffffff; } .column:hover { transform: scale(1.05); box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff; } .column h2 { font-size: 24px; margin-bottom: 20px; } .column p { font-size: 16px; color: #555; } .column .icon { font-size: 48px; margin-bottom: 15px; transition: transform 0.3s ease; } .column:hover .icon { transform: rotate(360deg); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .column { animation: fadeInUp 1s ease-out; } </style> </head> <body> <div class="container"> <div class="column"> <div class="icon">🌟</div> <h2>Column 1</h2> <p>This is the first column with some exciting content.</p> </div> <div class="column"> <div class="icon">🚀</div> <h2>Column 2</h2> <p>This is the second column with even more exciting content.</p> </div> <div class="column"> <div class="icon">💼</div> <h2>Column 3</h2> <p>This is the third column with the most exciting content.</p> </div> </div> </body> </html>