Tribute page Need Feedback :)

Hello everyone, I just finished my Tribute Page and would appreciate feedback on things I could improve.
This is my Tribute Page !
Thnks! :slight_smile:

Don’t use view port units for font sizes (vmin in this case). The user should always have control over how big they need the font to be. Using view port units makes it so the font size is determined by the browser dimensions instead. If someone needs a bigger font size to be able to read your content then they have to make the browser window bigger. What if they can’t do that? Always use em (or rem) for font sizes.

1 Like

Thank you, i’ll change this !

Don’t use <br> to force line breaks, or spacing. Use CSS. If you want ten paragraphs then use ten paragraph elements.

1 Like