Hi there,
I just completed my first FCC project and would like to seek some feedback. It is very basic but would love to hear some opinions on what I can change or improve.
https://codepen.io/ashley-khor/full/rNWpRve
Thank you all!
Hi there,
I just completed my first FCC project and would like to seek some feedback. It is very basic but would love to hear some opinions on what I can change or improve.
https://codepen.io/ashley-khor/full/rNWpRve
Thank you all!
Hello,
Congratulations on your first completed project! I notice itâs not passing all the tests, so I definitely add the script for the fcc tests. Also, the page is not currently responsive and doesnât resize for smaller screens.
I really appreciate your response! I didnât even realize that thereâs a tool for me to check if I complete the tasks. I just copied my html and css codes into the test suite and it shows that i passed all tests. Did yours show otherwise?
And ok, let me figure out how to make the page responsive to different screen sizes. Thanks again!
When I originally posted you were missing the id for test 7, but youâve fixed that now.
Oh yeah! I did change that after I posted it. Thank you!
I noticed in my view that your site was unscrollable. Maybe you should look at your css to make sure that your scrollbar is visible. Also, for a more âmaterialâ style, you could use sans serif or Roboto on the paragraph text.
U didnât give video and navbar and a form element
Welcome to the forums @ashketchum. Your page looks good. 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.overflow-x: hidden;
will completely hide anything that extends outside its container element horizontally. Itâs recommended to not do this, and refactor your CSS to be more responsive - otherwise it is possible for your site to appear to be missing content.Thank you so much Roma! Your response is extremely helpful as I progress with other projects as well. Appreciate it!
Thanks for the input!
Appreciate your input!