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

  • LucasDeveloper0• 10

    @LucasDeveloper0

    Submitted

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

    The responsive organization with css was the most difficult part of the project, but is a weasome tool to inclusive site for diferents dispositives

    Freedteck• 130

    @Freedteck

    Posted

    Hello, well-done with your development journey. It seems you submitted a screenshot of the links instead. Because that's what I can see

    0
  • P
    Alper• 1,010

    @adonmez04

    Submitted

    It's a (nearly) pixel perfect solution and I hope it works on your machine as well as mine... Naming modifier classes is difficult for me, I need to work on it. I followed the CSS first design perspective by Jeremy Keith that he explains in the CSS in depth book. I highly recommend this book to improve your CSS skills. I checked some good solutions and I changed my current tags to more semantic way. I know there are a lot of things that can be improved...

    Any feedback is welcome, thanks...

    Freedteck• 130

    @Freedteck

    Posted

    Hi Alper. Great work here and well-done. I'd love to know more about the book you recommend. Did you have any link for it? Kindly share

    1
  • Freedteck• 130

    @Freedteck

    Posted

    Hi, this is really cool. As for the background SVG, the step is pretty straight forward.

    1. In the css body selector, apply the background-image property with url as it's value i.e background-image: url(' link to the svg '); Note that the link to the svg is a relative one (./images/pattern-background-desktop.svg);
    2. U should use the background-repeat: repeatx; if you want.

    Marked as helpful

    1
  • Alfrey-Chan• 20

    @Alfrey-Chan

    Submitted

    CSS Styling

    • I wanted to decrease the height of the card to make it more centered, would setting a max-height % for my card div be the correct approach?
    • I selected font weights 400 and 700 for the google font, how does it decide which elements will use those weights? (Seemed like my h1 and p tags automatically took the weights 700 and 400 respectively)
    • I originally wanted to wrap my h1 and p tag into a <div class="text">, would that be unnecessary?

    Code Organization and Practices

    • Are there any bad practices that are worth mentioning?
    • Is there anything I can do to improve readability?
    Freedteck• 130

    @Freedteck

    Posted

    Hello, I can't find fault in ur html code, where you probably need changes is in your css code. Below are the suggestions I have:

    1. Since u used the flexbox property on ur body tag, use the flex-direction: column;. This will make ur card at the center of the page.
    2. For the font weight, it's best to apply corresponding weight to individual element such as h1 {font-weight: 700;} and p {font-weight: 400;}
    3. The flexbox has a gap property which you can apply to the card-contents to give space btw the components inside. Such as gap: 20px;

    Marked as helpful

    1
  • Freedteck• 130

    @Freedteck

    Posted

    Hi, well-done with the exercise. It's very clean and clear. Concerning the question, you can use max-width: 100% instead of width property on the img tag. This will make the image responsive and fit in the div as you want.

    Again, well-done writing clean codes

    Marked as helpful

    0
  • MeaganA• 40

    @MeaganA

    Submitted

    Hello, I completed this QR Code Challenge. I was having difficulty with the mobile version. There was more space at the top of the page that might cause the users to scroll down a little to get to the actual QR code card. Any constructive feedback on this challenge is welcomed!

    Freedteck• 130

    @Freedteck

    Posted

    Hi, well-done here. Your code is very clear and clean. From what I observed, you work a lot with margin which can create more space. Try any or all following if it'll help:

    1. Adjust the size of the margin you gave the cards,
    2. Since u used flexbox, work with the gap properties instead of using margin and apply side padding.
    3. Another thing u can try is to apply the flex layout to the body itself and try to set its min height to 100vh, justify content center, align items center.

    While some of these might not work for you, it's still good to try them out

    0
  • Vitor10080• 20

    @vitor200450

    Submitted

    The main difficulty I faced while took on this challenge, is the responsivity. That was the part that got me stuck for a while to find out. Some things I wanted to question for a possible feedback:

    • What "max-width" values do I specifically use while working with responsivity screens? I know there are specific values for it, but I think sometimes those values aren't exactly accurate as I tried to implement in this challenge.

    • In a overall question, what practices I could do to improve my responsivity knowledge and try to improve on? This is the part that gets me everytime while working in a front-end page, so it's kinda difficult for me, as a "intermediate-beginner" student.

    Freedteck• 130

    @Freedteck

    Posted

    Hey! Kudos on making the design responsive without libraries. Concerning your questions, since you're using flexbox layout, specifying the height for each card class can be strategic. Instead, use the gap: value; property to specify space between elements in the layout and use padding top and bottom to make the container long.

    As for the max-width, it's useful when dealing with responsiveness. My suggestion to your code is to wrap all the card class in a div element, then in your css, give the div element a max-width value. Play around the value till you are convenient.

    1
  • Freedteck• 130

    @Freedteck

    Posted

    I'm not that familiar with tailwind but I think what u need to do in ur code is to add something like overflow: hidden; with some border-radius to the card class so the rounded corners can be effective

    0
  • kealozim• 20

    @kealozim

    Submitted

    This is my first challenge submission. I'm unsure if the way I used widths is correct or if there is a better way. Any feedback is appreciated.

    Freedteck• 130

    @Freedteck

    Posted

    Hey! I checked your code and everything is fine, Just a little change.

    Ur qr-image should have the max-width of 100% for it to fit desired container instead of fixed width.

    Also, I suggest you use padding in the container instead of specified height. All should be good from there

    Marked as helpful

    0
  • Freedteck• 130

    @Freedteck

    Posted

    Wow. Just like exact replica

    0