Tribute Page: Chimamanda Ngozi Adichie

Hi,

I started my journey with freeCodeCamp in March, and I’m glad to be part of this forum.

Please spare some time to take a look at my Chimamanda Ngozi Adichie Tribute Page and offer your honest feedback. I will appreciate.

1 Like

Hi @nzubeifechukwu !

Welcome to the forum!

I think your page looks good.

A few things.

I would review the lesson on giving links meaningful text.

Instead of saying “on her website” you can say “Chimamanda Ngozi Adichie’s personal website”

Now that you are building projects, it is important to separate your html and css.
Get rid of the style tags and move your css over to the css section.

I wouldn’t use br tags like this.

<br><br>

If you want to create space between elements then you can do that in css.

Hope that helps!

1 Like

Thank you @jwilkins.oboe . Yes, it sure helps. I’ll review the project with your suggestions in mind. Thank you again.

1 Like

Your page looks good @nzubeifechukwu. Some things to revisit;

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the 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.
    • For instance links to fonts go in the box labeled ‘Stuff for <head>’
  • Keep all styling external. Do not use internal or in-line styling
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.
  • Accessibility is about being accessible to all users. Review the giving meaningful text to links lesson. For a more thorough explanation read Web Accessibility in Mind.
    • on her website” is not accessible
1 Like

Thank you @Roma . I appreciate your time and detailed feedback.

1 Like

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