My Tribute Page- freeCodeCamp

Made a tribute page for freeCodeCamp. Just wanted to know what y’all think about it. Here is the link to it(easy on the criticism please).

Hi Malcolm,

One thing I noticed with your code is that you are mixing inline styles in your HTML while using CSS.

Here is an example of inline styling from your tribute page (line 15):

<h5 style="color:white">Curriculum</h5>

You could accomplish the same with CSS with something like this:

h5 {
    color: white;
}

This keeps your site structure separate from the style. I hope you find this useful!

1 Like

Cool! Thanks for your input!