Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>Landing Page Example</title> <style> body { font-family: sans-serif; margin: 0; color: #333; background-color: #fafafa; } /* 1. The Header/Navbar */ header { background-color: white; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .logo { font-size: 1.5em; font-weight: bold; color: #e91e63; } .nav-links a { margin-left: 20px; text-decoration: none; color: #555; } /* 2. The Hero Section */ .hero { background: linear-gradient(135deg, #e91e63, #9c27b0); color: white; text-align: center; padding: 100px 20px; } .hero h1 { font-size: 3em; margin: 0 0 20px 0; } .hero p { font-size: 1.2em; max-width: 600px; margin: 0 auto 30px auto; opacity: 0.9; } .hero-btn { padding: 15px 30px; background-color: white; color: #e91e63; text-decoration: none; font-weight: bold; border-radius: 30px; } /* 3. The Features (Cards) Grid */ .features-section { padding: 80px 20px; text-align: center; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1000px; margin: 40px auto 0 auto; } .feature-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .feature-icon { font-size: 3em; margin-bottom: 15px; display: block; } /* 4. The Footer */ footer { background-color: #222; color: white; text-align: center; padding: 30px; margin-top: 40px; } /* Responsive fixes */ @media (max-width: 600px) { .hero h1 { font-size: 2em; } .hero { padding: 60px 20px; } } </style> </head> <body> <!-- Header --> <header> <div class="logo">AppNova</div> <div class="nav-links"> <a href="#">Login</a> </div> </header> <!-- Hero Section --> <section class="hero"> <h1>Transform Your Workflow</h1> <p>Sign up today and get access to the most intuitive dashboard for managing your daily operations.</p> <a href="#" class="hero-btn">Start Free Trial</a> </section> <!-- Features Grid --> <section class="features-section"> <h2>Why Choose Us?</h2> <div class="features-grid"> <div class="feature-card"> <span class="feature-icon">🚀</span> <h3>Blazing Fast</h3> <p>Our infrastructure runs on top-tier cloud architecture ensuring you never slow down.</p> </div> <div class="feature-card"> <span class="feature-icon">🔒</span> <h3>Secure Banking</h3> <p>We use military-grade encryption to protect your data at all costs.</p> </div> <div class="feature-card"> <span class="feature-icon">💻</span> <h3>Any Device</h3> <p>A fully responsive design means you can access our platform seamlessly from anywhere.</p> </div> </div> </section> <!-- Footer --> <footer> <p>© 2026 AppNova Software. All rights reserved.</p> </footer> </body> </html>