Outiref

Code source de l'URL : https://www.la-tintaine-editions.fr

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="La Tintaine Éditions - Maison d'édition dédiée aux romans, polars et thrillers. Publiez avec nous !">
    <meta name="keywords" content="édition, romans, polars, thrillers, manuscrits, littérature">
    <meta name="author" content="La Tintaine Éditions">
    <title>La Tintaine Éditions - Accueil</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }

        body {
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 1.1em;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        nav a:hover {
            color: #e74c3c;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            background: url('https://via.placeholder.com/1200x400?text=Ambiance+Littéraire') no-repeat center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(44, 62, 80, 0.5), rgba(231, 76, 60, 0.3));
            z-index: 1;
        }

        .hero > div {
            z-index: 2;
        }

        .hero h2 {
            font-size: 3em;
        }

        .hero p {
            font-size: 1.3em;
            max-width: 600px;
        }

        /* Main Content */
        .content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .section {
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
        }

        .section h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .section p {
            font-size: 1.1em;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #c0392b, #e74c3c);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto 20px;
        }

        .footer-section h4 {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .footer-section p, .footer-section a {
            font-size: 0.9em;
            color: #dcdcdc;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #e74c3c;
            transition: color 0.3s ease;
        }

        .footer-bottom {
            border-top: 1px solid #dcdcdc;
            padding-top: 10px;
            font-size: 0.8em;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content, .footer-content {
                grid-template-columns: 1fr;
            }

            .hero h2 {
                font-size: 2em;
            }

            .hero p {
                font-size: 1em;
            }

            nav a {
                display: block;
                margin: 10px 0;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <h1>Maison d’Édition atypique</h1>
        <nav>
            <a href="#accueil">Accueil</a>
            <a href="#catalogue">Catalogue</a>
            <a href="#soumettre">Soumettre un manuscrit</a>
            <a href="#contact">Contact</a>
        </nav>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div>
            <h2>Editeur en 2025</h2>
            <p>Une maison d’édition passionnée par les romans, polars et thrillers. Découvrez nos auteurs et partagez vos histoires avec nous.</p>
        </div>
    </section>

    <!-- Main Content -->
    <main class="content">
        <div class="section">
            <h3>Notre ligne éditoriale</h3>
            <p>Nous publions des récits captivants qui explorent l’âme humaine : thrillers haletants, polars sombres et romans émouvants. À compte d’éditeur, nous croyons en la puissance des mots.</p>
            <a href="#catalogue" class="cta-button">Explorer notre catalogue</a>
        </div>
        <div class="section">
            <h3>Soumettez votre manuscrit</h3>
            <p>Auteurs en herbe ou confirmés, envoyez-nous vos œuvres par voie électronique. Nous privilégions les formats numériques pour un avenir durable.</p>
            <a href="#soumettre" class="cta-button">En savoir plus</a>
        </div>
    </main>

    <!-- Footer -->
    <footer>
        <div class="footer-content">
            <div class="footer-section">
                <h4>Contact</h4>
                <p></p>
                <p><a href="mailto:contact@la-tintaine-editions.fr">contact@la-tintaine-editions.fr</a></p>
                <p></p>
            </div>
            <div class="footer-section">
                <h4>Nos rubriques</h4>
                <p><a href="#catalogue">Catalogue</a></p>
                <p><a href="#soumettre">Soumettre un manuscrit</a></p>
                <p><a href="#a-propos">À propos</a></p>
            </div>
            <div class="footer-section">
                <h4>Infos</h4>
                <p><a href="#mentions-legales">Mentions légales</a></p>
                <p><a href="#politique-confidentialite">Politique de confidentialité</a></p>
                <p><a href="#cgv">Conditions générales de vente</a></p>
            </div>
        </div>
        <div class="footer-bottom">
            <p>© 2025 La Tintaine Éditions - Tous droits réservés | Site conçu avec soin pour les amoureux des livres</p>
        </div>
    </footer>
</body>
</html>