Build an Event Flyer Page - Build an Event Flyer Page

Tell us what’s happening:

Bonjour,
je ne comprends pas pourquoi je ne passe pas les étapes à partir de la 11 et toutes les étapes suivantes. Tout n’est pas finis, mais la validation d’étapes ne se fait quand même pas..

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Festival du Voyage</title>
  <link href="style.css" rel="stylesheet">
</head>
<body>
  <header>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/event.jpg" alt="Event">
    <h1>Festival du Voyage – Partez aux quatre coins du monde </h1>
  </header>

  <main>
    <section>
      <h2>✈️ À ne pas manquer</h2>
      <hr>
    </section>
    <section>
      <h2>🌎 Invités spéciaux</h2>
      <hr>
    </section>
  </main>
</body>
</html>

/* file: styles.css */
body {
  width: 80vw;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: calc( 100vh - 100px );
}

section {
  width: 80%;
  margin: auto;
}

hr {
  width: 50%;
  margin: 10px auto;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36

Challenge Information:

Build an Event Flyer Page - Build an Event Flyer Page

Votre feuille de style CSS n’est pas correctement liée dans votre document HTML. Vérifiez soigneusement le nom du fichier.