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 liked using the validation atributes in the forms. I didn't even know they existed. I thought all the validation was done in Javascript. I also liked learning about pseudoelements, input types and media queries.

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

    Using Javascript to do certain features was definitely the hardest part. I couldn't do it alone, so I asked chatGPT for some help.

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

    Manipulating the DOM to make my project interactive.

  • Submitted


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

    What I liked about this challenge was that I learned how to center a div properly. Using a container div to help me center the img tag was helpful.

    .container__illustration {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .illustration{
        max-width: 100%;
        border-radius: 12px;
    }
    

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

    I wanted to make the shadow a bit longer when the mouse cursor hovered the title. So I asked ChatGPT for some help and it taught me how to do it using Javascript. I found it amazing.

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

    I would like to learn more on how to use Javascript to make my projects more interactive.

  • Submitted


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

    It was a nice way to come back to my studies.

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

    The hardest part for me was organizing the tags in containers and using the a tags. I tried using the button tag first, but it didn't work out the way I wanted to.