Project: 3 product landing page

hi,

I didn’t find to solution

_ User Story #5: When I click a .nav-link button in the nav element, I am taken to the corresponding section of the landing page.*
**
* User Story #6: I can watch an embedded product video with id="video" ._**

I did some change but still my test failed

my codepen link is: https://codepen.io/dervish-mum/pen/yQoOdm?editors=0100

many thanks all your help

#5. When I click a .nav-link button in the nav element, I am taken to the corresponding section of the landing page.

You need to clean up some of your html around the nav-links. You have some bad tags there. The test software cannot find / confirm your nav-links are formed as requested.

<a class="nav-link"><a href="#contact">Contact </a> </a>
<l class="nav-link"><a href="#video-box">Video </a> </l>
<li class="nav-link"><a href="#courses">Courses</a> </li>
<li class="nav-link"><a href="#ab">About</a> </li>
</ul>
</nav>

Notice that the class nav-link is not on the a tag and you have some nested a tags
Like below the class nav-link needs to be on the a tag
<li><a href="#courses" class="nav-link" >Courses</a> </li>

#6. I can watch an embedded product video with id=“video”.
Do you have an element with id=“video”?