I would love some feedback on my portfolio!

Finally finished my portfolio page and web design certificate! It may not look amazing to most of you and it needs a lot of tidying up but I wouldn’t have believed when I started out that I could do anything like this! I would love to hear what you think!

1 Like

HI @clare.parkes !

Congrats on finishing the last responsive web design project.

I think your project looks good.

Small suggestion: I would advise you to format your html and css.

Formatting will tidy up things like this:

<section id="welcome-section">
  <h1>Hello World, I'm Clare</h1>
  <div id="animation-container">
    <div id="animation">a Web Developer</div></div>
  <a href="#projects"><button>My Projects</button></a>
  </section>

into this instead:

<section id="welcome-section">
  <h1>Hello World, I'm Clare</h1>
  <div id="animation-container">
    <div id="animation">a Web Developer</div>
  </div>
  <a href="#projects"><button>My Projects</button></a>
</section>

Once you start building projects in your local environment outside of codepen, there are tools like Prettier that will format your code for you.

Always take the time to celebrate wins along the way throughout your programming journey.

I think you did a good job and will keep growing from there. :+1:

1 Like

Thanka for the feedback! Yes my next step was going to be putting my code into VSCode and tidying it up to make it more readable! Thanks i didn’t realize you could do it on CodePen too!

The project is very good :+1:

  1. Design is awesome
  2. Nice Fonts
  3. It passes all the tests
1 Like

Thanks @NikhilReddyManda Nikhil that has made my day!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.