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'd make a CSS mini library with SASS and use it for my next project

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

    Using and understanding the position property. I asked a friend and he told me to use chrome dev tools so I can properly discern where my problem is coming from. Thanks Carlos

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

    I'd appreciate any tips or advices. I'll also love helpful best practices on writing clean readable code

  • Submitted


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

    I got to learn the basics of CSS animations and practiced using media queries more. I also got to practice form validation using vanilla js and everything I learned about JavaScript function closures. I'm also in the process of learning BEM and SASS thanks to @geomydas.

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

    Major Problems I encountered where from the CSS side of the project, but I managed to overcome them by googling stuff.

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

    I prioritize advices on writing clean and readable code but still I'll really appreciate other advices

  • Submitted


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

    I practiced a bit more on responsive layouts and I got to finally understand how to use the :nth-child and :nth-last-child Just discovered I don't properly use Semantic HTML elements so in my next project that's what I'll do differently

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

    I got frustrated trying to change the color of the numbers in an ordered list but I managed to google out a few tricks

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

    Making responsive layouts

  • Submitted


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

    I didn't spend as much time as I did for my previous project and I noticed I've improved a bit in using media queries.

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

    The challenge I encountered was making the design responsive but I managed to overcome them by googling stuff šŸ˜…

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

    I would heavily appreciate tips on making responsive designs

  • Submitted


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

    I was able to learn from the mistakes I made in my previous project and I was able to complete this project a little faster

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

    I'm still trying to learn how to create responsive layouts

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

    I'd like to know some best practices from more experienced front-end devs and better ways to attempt the challenge.

  • Submitted


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

    While solving the QR code challenge I had problems centering the qr code image. After a little online search, I learned that images act funny in a div because we're forcing an inline element (img) inside a block element (div). I learned two ways to tackle this problem but I used the one I preferred šŸ‘‡šŸ‘‡šŸ‘‡šŸ‘‡šŸ‘‡

    šŸ‘‡ To see how you can add code snippets, see below šŸ‘‡:

      .qr-code {
        margin-top: 10px;
        width: 95%;
        height: 100%;
      }
    
      #qr-code {
        padding: 5px;
        display: block;
        margin: auto;
        box-sizing: border-box;
        width: 100%;
        border-radius: 15px;
        object-fit: contain;
      }
    
    

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

    Responsive Layouts