@alok.v.marathe, when a test fails click the red button to see which test(s) are failing and text to help you correct the issue. (Be sure and read more than just the first line of the failing message.)
In this case the failing message is;
The navbar should always be at the top of the viewport.
Navbar's parent should be body and it should be at the top of the viewport : expected 30 to be close to 0 +/- 15
AssertionError: Navbar's parent should be body and it should be at the top of the viewport : expected 30 to be close to 0 +/- 15
What is your navbarâs parent?
On a side note, codepen provides the boilerplate for you. It only expects the code youâd put within the body
element in HTML. (No need to include the body
tags). For anything you want to add to the <head>
element click on the âSettingsâ button, then HTML and add it into the âStuff for <head>â box.
- The link to the font goes in the box labeled âStuff for <head>â
Mentioning because you have elements out of order. Links for a font would never be in the body
element. Review this for an understanding of the HTML boilerplate tags.
Also to help, run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
And donât use in-line styling. Make all your styling external.