My First Project - Tribute Page Feedback

Hi!

This is my very first project in free Code Camp. Here is my Tribute Page https://codepen.io/tamoria/pen/JjERxLJ . Looking forward to the feedback and learning so much more.

2 Likes

Hi @tkpraylow2 !

Welcome to the forum!

I think your page looks good.

I would suggest reviewing the lesson on giving links meaningful names.

Wikipedia page is not that accessible.

You have a few errors in your html.
Run your code through the html validator
You can ignore the messages for the doctype and head since that is not required for codepen.

You have an empty block in your css that you are not using.

@media (max-width: 460px) {
  #main {
  }
}

Keep up the good work!

1 Like

Welcome to the forums @tkpraylow2. Your page looks good. Some things to revisit;

  • Run your HTML code through the W3C validator.
    • There are HTML syntax/coding errors you should be aware of and address.
    • Since copy/paste from codepen you can ignore the first warning and first two errors.
  • 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.
    • wikipedia page” is not accessible
1 Like

Glad to be here. Thank you so much for the feedback. Changes made.

1 Like

So glad to be here. Thank you very much for the feedback. Making the changes now.

1 Like

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