Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I am proud to have introduced SCSS in my project. I struggled with quite a few compilation bugs but I always solved them.

    What specific areas of your project would you like help with?

    Is my introduction to SCSS good?

    Is my code well structured?

    Is the semantics used well?

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I am proud of myself for using the `` tags and understanding their functions more precisely.

    What specific areas of your project would you like help with?

    • Is the code well organized ?

    • Is the accessibility used sufficient ?

    • What are the possible improvements ? (I will soon start using SCSS)

  • Submitted


    What challenges did you encounter, and how did you overcome them?

    I couldn't get the yellow rectangle containing 'Learning' to have the correct width. I had to use max-width: max-content, a property I learned from Intellisense.

    What specific areas of your project would you like help with?

    Is the semantics of my project correct ? Is the code well organized ? What improvements are possible ? I feel like the avatar hover animation is not very smooth, do you have any idea how to fix this ?

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I am proud to have made a project that seems to adapt to different screen sizes.

    What challenges did you encounter, and how did you overcome them?

    Finally figured out why I couldn't align an element vertically to the entire page. I just had to put these lines of code to get it done:

    html, body, main {
        width: 100%;
        height: 100%;
    }
    

    And then drag these lines to center the element:

    .qr-code-box-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    

    It's very simple but I really struggled with it before.

    What specific areas of your project would you like help with?

    Does the final result visually match what was requested ? Is the code well organized ?