Check out my first freeCodeCamp HTML/CSS project; the Tribute Page! Let me know what you think, any feedback welcome!
Thank you!!
Check out my first freeCodeCamp HTML/CSS project; the Tribute Page! Let me know what you think, any feedback welcome!
Thank you!!
Hi @russ430, welcome to the forums.
Itâs a good looking page. Just a couple of things;
<body> </body>
tags in HTML. (No need to include the body tags). For anything you want to add to the <head>
click on the âSettingsâ button and add it into the âStuff for <head>â box.
Thanks for the advice Roma! I definitely need to shape up the responsiveness of my projects. I appreciate the feedback!!
Beyond the already mentioned responsiveness, I would use a more intuitive class name than tbrady1. Overall, itâs really outstanding from a design standpoint. Iâm mostly jealous my first project didnât look that good!
You got everything in and passed so on the code side, good.
There are some design elements I highly recommend fixing now as it will be a lot more difficult to fix in the future if they become a habit.
Color Balancing- replace the white with a mid-tone gray. Everything else is very dark and the lightness contrasts to much. I would play around between #333 & # 777. If you still want to stay light, try something in the silver category like #d2d2d2
I would stylize your image caption so it isnât off to the side it like it currently is
When adding elements to a page. Spacing is a huge factor. Most of the spacing on the site is decent already; however, add spacing to your title-box class so it isnât directly under the picture. maybe a margin-top: 50px;
Lastly, Your images are âbleedingâ out of their containers. pay attention to overflow and your margins. A simple fix is to apply overflow: hidden; to the parent element. However, You may want to play with the sizing so you can get the image sizes the same as the info panel sizes.
I know this is an early project, and this is not meant to deter you in any way. I just wanted to point out a few things that stood out immediately without looking at the code. Best of luck moving forward.