Landing Page Simple

🏷️ Extraits de code HTML 📅 12/04/2026 👤 Mezgani said
Landing Hero Cta Page Html

Template de landing page simple et efficace avec hero section, features et call-to-action.

<!doctype html>
<html lang="fr">
    <head>
        <meta charset="UTF-8" />
        <meta name="copyright" content="MEZGANI Said" />
        <meta name="author" content="AngularForAll" />
        <meta name="robots" content="noindex, nofollow" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Landing Page Simple - Template | AngularForAll</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                line-height: 1.6;
                color: #333;
            }
            .hero {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 100px 20px;
                text-align: center;
            }
            .hero h1 {
                font-size: 3rem;
                margin-bottom: 20px;
                font-weight: 700;
            }
            .hero p {
                font-size: 1.25rem;
                margin-bottom: 30px;
                opacity: 0.9;
            }
            .btn {
                display: inline-block;
                padding: 15px 40px;
                background: white;
                color: #667eea;
                text-decoration: none;
                border-radius: 50px;
                font-weight: 600;
                transition: transform 0.3s ease;
            }
            .btn:hover {
                transform: translateY(-3px);
            }
            .features {
                max-width: 1200px;
                margin: 80px auto;
                padding: 0 20px;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 40px;
            }
            .feature {
                text-align: center;
                padding: 30px;
            }
            .feature-icon {
                font-size: 3rem;
                margin-bottom: 20px;
            }
            .feature h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
                color: #667eea;
            }
            .feature p {
                color: #666;
            }
            footer {
                background: #f8f9fa;
                padding: 40px 20px;
                text-align: center;
                color: #666;
            }
        </style>
    </head>
    <body>
        <section class="hero">
            <h1>Bienvenue sur votre Landing Page</h1>
            <p>Un template simple et élégant pour présenter votre projet</p>
            <a href="#" class="btn">Commencer maintenant</a>
        </section>

        <section class="features">
            <div class="feature">
                <div class="feature-icon">🚀</div>
                <h3>Rapide</h3>
                <p>Optimisé pour des performances maximales avec un code léger et efficace.</p>
            </div>
            <div class="feature">
                <div class="feature-icon">📱</div>
                <h3>Responsive</h3>
                <p>S'adapte parfaitement à tous les appareils, du mobile au desktop.</p>
            </div>
            <div class="feature">
                <div class="feature-icon">🎨</div>
                <h3>Personnalisable</h3>
                <p>Facilement modifiable pour correspondre à votre identité visuelle.</p>
            </div>
        </section>

        <footer>
            <p>&copy; 2026 Template Landing Page - Créé avec AngularForAll</p>
        </footer>
    </body>
</html>