List isn't shown on page that I wrote

I am doing this youtube tutorial.

In the page I wrote, the list element does not show up in my webpage.

And I do not know why,. Could somebody help me check where did I do wrong?

Here is the codepen.

Hey. There are only two simple errors. You mispelled “collapse” and wrote “navbar” instead of “nav” in the ul.

So, this:

    <div class="collapse navbar-collaspe" id="MyNavbar">
      <ul class="navbar-nav navbar right">

should be:

    <div class="collapse navbar-collapse" id="MyNavbar">
      <ul class="navbar-nav nav right">

Remember that you’ll need to include the bootstrap javascript file if you intend to use the menu collapse functionality!

1 Like

Oh. I see. Thanks! I’m new to this collapse-navbar thingy. lol.

1 Like