Our History - 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>Our History</title> <style> body { font-family: 'Arial', sans-serif; background: #e6e9f0; margin: 0; padding: 0; overflow-x: hidden; } .history-section { text-align: center; padding: 100px 20px; background: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); position: relative; } .history-section h1 { font-size: 2.5em; color: #333; margin-bottom: 20px; animation: fadeInLeft 1s ease-out; } .history-section p { font-size: 1.1em; color: #555; line-height: 1.6; max-width: 800px; margin: 0 auto; animation: fadeInRight 1s ease-out; } .history-section .icons { margin-top: 30px; animation: fadeIn 1s ease-out; } .history-section .icons i { font-size: 2em; color: #dc3545; margin: 0 10px; transition: transform 0.3s; } .history-section .icons i:hover { transform: scale(1.2); } @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .animated-background { content: ''; background: linear-gradient(135deg, #5ee7df 10%, #b490ca 100%); height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: -1; animation: gradientBG 5s ease infinite; background-size: 400% 400%; } @keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } </style> <script src="https://kit.fontawesome.com/a076d05399.js"></script> </head> <body> <section class="history-section"> <div class="animated-background"></div> <h1>Our History</h1> <p>Since our founding, we have been committed to excellence and innovation. Our journey has been marked by significant milestones and achievements that have shaped our success. 📜</p> <div class="icons"> <i class="fas fa-history"></i> <i class="fas fa-award"></i> <i class="fas fa-flag-checkered"></i> </div> </section> </body> </html>