Learn Accessibility by Building a Quiz - Step 7

I get error code all the time. if i have

it gives me error, and if i move so the h1 or img is outside nav it gives me error, how ever i move them or do i get error, what am i doing wrong?

Tell us what’s happening:
Describe your issue in detail here.

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" />
    <meta name="description" content="freeCodeCamp Accessibility Quiz practice project" />
    <title>Accessibility Quiz</title>
    <link rel="stylesheet" href="styles.css" />
  </head>

<!-- User Editable Region -->

  <body>
    <header>
      <nav>
      <h1>HTML/CSS Quiz</h1> 
    <img src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg" id="logo" />
    </nav>
    </header>
    <main></main>

<!-- User Editable Region -->

  </body>
</html>

/* file: styles.css */
body {
  background: #f5f6f7;
  color: #1b1b32;
  font-family: Helvetica;
  margin: 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

Challenge: Learn Accessibility by Building a Quiz - Step 7

Link to the challenge:

Within the ‘header’ element you should have one img , h1 , and nav element. There is no requirement for nesting one element inside the other. Your ‘nav’ element should be written as: <element></element>. Both tags, a side by side.