Quite exhausted but happy! (Personal Portfolio challenge — done)

I’m just going to leave this here: https://moon-blade.github.io/fcc-personal-portfolio/

Turned out pretty plain, nothing really exciting about this, but it should be quite responsive.

Thanks to this project, now I’m definitely more confident with using CSS grid.

Waiting for your feedback.

Hi @moonblade!

Congrats on completing the responsive design section.

If you are interested in receiving feedback on your project will are going to need to see the project link.

Oh, I’m sorry, I didn’t mean to leave a link to the certification. Edited the original post.

I think your page looks good.

You might consider adding a smooth scroll to the page.

html {
  scroll-behavior: smooth;
}

Also for the contact section at the bottom, I don’t think you need to add the text “using links below”. You have the icons and text link so people will know to click on those links anyway.

Keep up the good work.

Cool, good work. If you provide a link to the code we could review that if you want.

This should do the job, I think.

Cool, a quick scan over it and I don’t see anything major.

The only thing that caught my eye was a little over-commenting:

    <!-- projects section -->
    <section id="projects">

The second line tells me all the information that is in the comment - I don’t think comments like that don’t add anything to the code other than clutter. I know they tell you to comment, comment, comment, but I find in the real world it’s more like “only comment if it’s not obvious”.

I add such comments to my HTML and CSS because it helps me improve my workflow in a way that I find necessary sections of the code quicker as I scroll up and down.

But yeah, you are right, I’ve gotta get used to finding necessary code by looking at the code itself, not the comments.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.