Gradient 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>Gradient Columns</title> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(120deg, #f6d365 0%, #fda085 100%); display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { display: flex; justify-content: space-around; align-items: center; width: 80%; } .column { flex: 1; padding: 20px; margin: 10px; text-align: center; background: linear-gradient(145deg, #84fab0, #8fd3f4); border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); color: #fff; } .column h2 { font-size: 24px; margin-bottom: 20px; } .column p { font-size: 16px; } </style> </head> <body> <div class="container"> <div class="column"> <h2>Column 1</h2> <p>Beautiful gradient background</p> </div> <div class="column"> <h2>Column 2</h2> <p>Vibrant and colorful design</p> </div> <div class="column"> <h2>Column 3</h2> <p>Eye-catching and modern</p> </div> </div> </body> </html>