Landing Page bring this error: #video is not defined

I am trying to work on my landing page project but i am missing on one point to make the 16/16. I am scoring 15/16 because i am getting an error message of my video not being defined. Can someone out there look at my code and tell me what is going on.

image

Hi @KATOPIUS !

We need to see your codepen to see the issue.

Also, you can’t have duplicate ids.
You wrote div2 twice.

I have pasted here/below the whole of my pencode for easy follow up.

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<body>
<header id="header">
  <nav class="navbar" id="nav-bar">
    <a class="nav-link"href="#div3">DIV 3</a>
    <a class="nav-link"href="#div2">DIV 2</a>
    <a class="nav-link"href="#div1">DIV 1</a>
    <a class="nav-link"id="img-container" href="#div3">
     <img id="header-img" src="https://www.google.com/search?q=company+logo+in+png&rlz=1C1AVFC_enUS884US884&sxsrf=ALeKk01KyG0-WqFLNuG97sVME4RxPKwM8w:1628835438142&tbm=isch&source=iu&ictx=1&fir=caPTZXb0bRC4IM%252CxCOoxBu7PidIeM%252C_&vet=1&usg=AI4_-kSvvz-BEUq3Mia_npESxMFD9bwwYw&sa=X&ved=2ahUKEwjw_L_trK3yAhVwAp0JHZHzBbsQ9QF6BAgFEAE#imgrc=caPTZXb0bRC4IM" width"40" height="40"/></a>
  </nav>
  </header>
                               
 </main id="main">                         
   <div id="div1"><iframe width="420" height="315" src="https://www.youtube.com/embed/tgbNymZ7vqY"></iframe></div><div id="div2"></div>
<form id="form" action="https://www.freecodecamp.com/email-submit">
  <input id="email" type="email" required name="email" placeholder="Enter Email Address"/>
  <input type="submit" value="submit" id="submit"/>
</form>
        <div id="div3">div3</div>
  </main>
  <body>

Two things.

No.1:
This is an error.

No.2:
This is the full error message.
I can watch an embedded product video with id="video".
#video is not defined : expected null to not equal null

It is telling you it can’t find the id.

After looking at your code, neither can I.
Always read the full error messages.

Hope that helps!

Thanks jwilkins. Let me try to check it out and see if i can score that 1 remaining mark.

Thank you very much for your help jwilkins. I passed it.
image

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.