I just finished it and it only gives me an error when resizing it from small to large that the NAV does not appear. until update.
here is my work.
https://codepen.io/gabrielrip/pen/xxRapXK
I just finished it and it only gives me an error when resizing it from small to large that the NAV does not appear. until update.
here is my work.
https://codepen.io/gabrielrip/pen/xxRapXK
Your page looks good @GabrilRIP. Some things to revisit;
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>)
body element in the HTML editor. (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.
<br> element to force line breaks or spacing. That’s what CSS is for.
<code> snippets in <pre> </pre> tags in HTML to preserve whitespace and line breaks.pre element and do the following in CSS; code {
white-space: pre-line;
}
If you’re saying that the test fails when the screen is small it’s not an issue. The instructions say, “On regular sized devices (laptops, desktops), the element with id="navbar" should be shown on the left side of the screen and should always be visible to the user.”
A smaller screen is not a regular sized device.
Btw, when you add the test script, this is not the test that is failing. You need to correct the failing test.
On a side note, since you’re asking for feedback I’m moving this to the more appropriate Code Feedback subforum to get more eyes-on.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.