Feedback needed: My Tribute Page

I would like to tidy things up resize the images appropriately.

All feedback greatly appreciated.

See the Pen savage tribute v1 by Aaron Brandon (@bighappytrees) on CodePen.

Hi @bighappytrees,
I think you don’t need to use Responsive Grid System because it hardly take any effects on your HTML document.
Instead of making your image and its caption separately, I think you should nested them inside figure element. Note that, you should put your caption’s content in figcaption element.
For example,

<figure> <!-- Parent element -->
<img src="www.google.com/logo.png">
<figcaption>The official Google Logo</figcaption> <!-- Child element -->
</figure>

Moreover, I think that each HTML element on your Pen should have more spaces so that your page will look clean and easy to find information.

1 Like

Thank you for the help! Do you know how I can make all the images the same format? Thank you for the help!

nevermind i dont think i need them in the “same format”

See the Pen savage tribute v1 by Aaron Brandon (@bighappytrees) on CodePen.