I fixed the nav as top menu, but the test is telling me that it’s wrong and it should be the header (i put the nav in the header), can I send this project like this or should I fix that?
here is the link:
I figured it out!
Basically, they’re expecting your <nav>
to be a direct child of <header>
. So in your code, if you take out the <div>
surrounding your <nav>
tag, it should pass the tests.
(Also, you probably want to add in ending tags for your <ul>
and <nav>
elements.)
1 Like
you’re right, thank you very much
1 Like