<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;!DOCTYPE html&gt;
&lt;html lang="fr"&gt;
&lt;head&gt;
    &lt;meta charset="UTF-8"&gt;
    &lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
    &lt;title&gt;La Formula 1 - Histoire et Voitures EmblÃ©matiques&lt;/title&gt;
    &lt;link rel="stylesheet" href="styles.css"&gt; &lt;!-- Si tu utilises un fichier CSS externe --&gt;
    &lt;style&gt;
        body {
            background-color: #f1f1f1; /* Fond clair pour une prÃ©sentation plus moderne */
            font-family: 'Arial', sans-serif;
            color: #333;
            margin: 0;
            padding: 0;
        }

        .header-container {
            background-color: #d32f2f; /* Fond rouge pour l'en-tÃªte */
            color: white;
            padding: 50px;
            text-align: center;
            font-size: 36px;
            text-transform: uppercase;
            letter-spacing: 4px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
        }

        .container {
            padding: 40px 20px;
        }

        /* Section Introduction */
        .intro-section {
            background-color: #ffffff;
            padding: 30px;
            margin-bottom: 50px;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        }

        .intro-section h2 {
            font-size: 28px;
            text-align: center;
            color: #d32f2f;
        }

        .intro-section p {
            font-size: 18px;
            line-height: 1.6;
            text-align: center;
            color: #555;
        }

        .intro-image-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .intro-image {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Section sur les crÃ©ateurs */
        .creator-section {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            gap: 20px;
        }

        .creator-image {
            width: 250px;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        }

        .creator-info {
            max-width: 600px;
            color: #333;
        }

        .creator-info h2 {
            font-size: 24px;
            color: #d32f2f;
        }

        .creator-info p {
            font-size: 18px;
            line-height: 1.6;
        }

        /* Section des rÃ¨gles de la course */
        .rules-section {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }

        .rules-section h2 {
            font-size: 26px;
            text-align: center;
            color: #d32f2f;
        }

        .rules-section ul {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
            margin-top: 20px;
        }

        .rules-section ul li {
            margin-bottom: 15px;
        }

        /* Section des modÃ¨les de voitures */
        .model-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .model-item {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .model-item:hover {
            transform: scale(1.05);
        }

        .f1-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .model-item h3 {
            font-size: 22px;
            color: #d32f2f;
            margin-top: 15px;
        }

        .model-item p {
            font-size: 16px;
            color: #777;
            margin-top: 10px;
        }

        a {
            color: #d32f2f;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            color: #c2185b;
        }
    &lt;/style&gt;
&lt;/head&gt;




</pre></body></html>