Hi,
I’m creating the Product Landing Page project and I’m stuck because nav-bar links don’t work. I have spent a lot of time looking for a solution but I don’t know where is the issue.
You can see all my code here: https://jsfiddle.net/lix__/zm9n7xjy/3/
Her’e a screenshot of the code:
Thanks in advance!
You need to put the link text inside the <a> element, not the <li>.
<a>
<li>
I answer myself. I’ve found the error!
I put the name of the link inside <li></li> tag instead of <a></a> tag, thus the text was just text , not a link.
<li></li>
<a></a>
Thank you @lasjorg, I’ve just found the issue. Was driving me crazy with this little thing.