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

  • MrLanterβ€’ 140

    @MrLanter

    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 ?

    tahaβ€’ 100

    @M-Taha-Amin

    Posted

    Nice one bro, I took a look at your code also. It is well organized and you have made use of correct semantics tags too, like footer and main, etc. Also, your solution is very close to the specified design. Great work!

    1
  • Parviz Parastarβ€’ 80

    @Parviz-Parastar

    Submitted

    Hello to all friends who are active on this site.πŸ‘‹

    In this exercise, I tried to write the elements of each section according to the BEM method completely and accurately and have a clean code.

    To build a better world, I will be very happy to read your comments and help each other to progress.πŸŽ‰

    tahaβ€’ 100

    @M-Taha-Amin

    Posted

    Looks great, Cheers mate πŸ™Œ

    1