Hello! I’ve just completed the tribute page project. Feedback would be much appreciated!
Here’s a link to it: (https://codepen.io/LizzieWa/pen/MWjdPLW)
Hello! I’ve just completed the tribute page project. Feedback would be much appreciated!
Here’s a link to it: (https://codepen.io/LizzieWa/pen/MWjdPLW)
Congrats on completing your first project. I do like the color combinations you chose.
The first big issue is that your page isn’t responsive. As I narrow the browser window I get a horizontal scroll bar and the elements on the page never adjust for the narrow view. Responsiveness is one of the primary goals of these projects so you’ll definitely need to fix that.
Also, do not use view port units (vw
and vh
) only for font sizes. This is an accessibility issue that prevents the user from manually increasing the text size on your page.
Thank you! I’ve gotten rid of the vw’s, and I’ve added a lot of media queries, but it’s a work in progress to make it fit screens of different sizes. Is there a faster way to do it than manually adding media queries for various widths?
I would recommend you use a narrow-first approach. Narrow your browser as skinny as it will go and then style the page so it looks good at that skinny width. Don’t use any media query break points. This will be your base CSS.
Then after you have it looking good above you can gradually widen your browser and when you have enough horizontal room to rearrange things on the page for a wider layout add your first break point there (using min-width
and em
units). Repeat as needed.
Welcome to the forums @lizziewasil. Your page looks good. Some things to revisit;
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)
Thanks everyone!
It passed the 10 tests when I originally submitted it, but right now I’m making changes to the website based on the above feedback. I’ll run in through the tests again soon, after it’s more responsive.
Ok, finally finished with the revision! (At least, I hope I did it right ) Media queries are tricky but they seem to be working properly at last - not getting any horizontal scrollbars in my browser.
Edit: just realized I forgot to run the HTML through the w3 validator, that will be next…
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.