kindly assist some of my nav bar elements when clicked do not direct the user to the specific section with the corresponding id.
my codepen link:https://codepen.io/wanyutu/pen/yqLQgM
kindly assist some of my nav bar elements when clicked do not direct the user to the specific section with the corresponding id.
my codepen link:https://codepen.io/wanyutu/pen/yqLQgM
The following line refers to an id of hello_world. However, you do not have such an id. You do have an id=“Hello world”, but it is not the same case nor does it have an underscore character between the words.
<li> <a href="#hello_world" class="nav-link">Hello world</a></li>
Make sure you have the correct spelling (including case) for all your ids referenced by corresponding anchor tags’ href attribute.