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 comments

  • P
    Darius 50

    @dariushill

    Submitted

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

    I'm most proud of being able to complete the challenge mostly by myself. I did need to research certain aspects of CSS that I had trouble with, but overall it was a great experience and feeling. I honestly don't know what I would have done differently next time.

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

    The first challenge I encountered was how to center my QR card inside the container div. I had trouble figuring this out but found the answer using flexbox, a topic I'm very new to. The second challenge I encountered was importing the correct font. I found the answer using Stack Overflow.

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

    None as of now

    LaStellaa 90

    @LaStellaa

    Posted

    Good job @dariushill! To position the content in the center of the page there are 2 very easy ways that you can write in the Main block (you need a main in your HTML):

    Flexbox:
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    or GRID :
    
    display: grid;
    place-items: center;
    min-height: 100vh;
    

    Hope this helps, have a good one!

    Marked as helpful

    1
  • P

    @AdamullaOsas

    Submitted

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

    I would like to add more components to manage responsiveness on mobile devices.

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

    Mostly margins and paddings, chatgpt helped me

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

    margins and paddings

    LaStellaa 90

    @LaStellaa

    Posted

    Hi! You did a great job of replicating the design. I am very junior myself so I am not confident in giving detailed feedback, but I can say that your HTML is well-structured and simple. One thing I noticed is that when you targeted the .image you then also added the img element, which is not necessary but also not a big deal. Good luck with your learning journey and keep up the good work!!

    Marked as helpful

    0