Project: Personal Portfolio. Feedback

Hi guys!
In need of feedback on my personal portfolio project.
link( https://odgripginger.github.io/personal-portfolio/ )
Thanks!

@omdhiraj
Your portfolio is very well designed visually. You added the correct amount of hover effects in the right places in the right way as to not distract from the design. Excellent!

I noticed a few thinks.

  • The design is not responsive at all. You will need to add media queries. I usually start small (at 300px width) and go bigger, meaning all your media queries will be using min-width. As you expand the browser outwards you will add more media queries.
  • I believe you should say you are “A Web Developer” not “An aspiring web developer”.
  • (pure opinion) Increase the size of the icons at the bottom of the page.

Thank you very much for your response. I am currently working on responsiveness. I will work on changes you suggested. Thanks again :slight_smile:

@omdhiraj you can view some of my projects to see how I have done it.
Pomodoro Focus
Project On Github

I used lines like this:

@media only screen and (max-width: 900px) and (min-height: 300px) and (orientation: landscape) {
  /* code */
}
@media only screen and (min-width: 400px) and (orientation: portrait) {
  /* more code */ 
}
1 Like