My Responsive web design projects - Tribute Page

Hello everyone! I just finished the course and I wanted some feedback about my projects. I’m a total beginner, and I believe the ones I’ve done can improve a lot.

This one is a tribute page to Aldous Huxley:
https://codepen.io/Lucas-Evangelista99/pen/mdRxBeW

Thanks in advance for your help!

Hi @lucas_evangelista99 !

Welcome to the forum!

I think your page looks good.

Just a couple of things.

I would review the lesson on giving links descriptive text.

Wikipedia is not that accessible.

Also, the red text is a little are to read.

In codepen, there is a place in the html settings to include links for the head.

There are a couple of times where you will repeat some css properties.

  text-align: center;
  color: white;
  font-weight: bold;
  font-family: Crimson Text;

I think using a class would be better instead of styling the individual ids.

For example,

.bio-text{
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: Crimson Text;
}

Hope that helps!

1 Like

Got it! I’m going to work on these. Thanks!

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