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

  • @Klyyyf

    Submitted

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

    I took too much time to make this so i'll try to optimize my time next time.

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

    I didn't remember how to do some things, but I searched it out and got it right I guess.

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

    I probably complicated things more than it was supposed to, so any help would be welcome.

    @TrenyceCodes

    Posted

    Hey @Klyyyf,

    Good job on completing this solution. For your css file, you can add @font-face, :root css selector to your css code.

    :root {
       :root {
        --white: hsl(0, 0%, 100%);
        --light-gray: hsl(212, 45%, 89%);
        --grayish-blue: hsl(220, 15%, 55%);
        --dark-blue: hsl(218, 44%, 22%);
    }
    
    @font-face {
        font-family: Outfit;
        src: url("./fonts/Outfit.ttf");
    }
    

    Marked as helpful

    0
  • Wallace 10

    @wallace-bc

    Submitted

    My first submit. Feel free to send your tips. I had difficulties using pixels, rem, percentage... Still trying to learn

    @TrenyceCodes

    Posted

    Hey @wallace-bc,

    You did a great job on your first coding project. One step closer to getting better at coding. That is a giant step and I applaud you for that.

    First and foremost you can keep for hsl colors the root pseudo-class

    Here's an example:

    :root {
        --white: hsl(0, 0%, 100%);
        --light-gray: hsl(212, 45%, 89%);
        --grayish-blue: hsl(220, 15%, 55%);
        --dark-blue: hsl(218, 44%, 22%);
    }
    

    You can even keep your fonts organized with @font-face

    @font-face {
         font-family: "Outfit", sans-serif;
         src: url(./assets/fonts/Outfit.ttf);
    }
    

    Here are some links to help you understand the root pseudo-class and font-face class

    Root Pseudo Class Link

    Font-Face Link

    Hope this helps

    Happy Coding*

    0
  • @TrenyceCodes

    Posted

    Hey @litewskidev, Good Job on your challenge. It looks amazing and it matches just like the design. I hope to take inspiration from this.

    Happy Coding!

    0
  • @mkpouto-inyang

    Submitted

    How did you approach centering the QR code design on the webpage? I implemented it somehow but I'm not sure if I used the right approach.

    @TrenyceCodes

    Posted

    Good Job on Finishing your First challenge

    For your HTML img element src attribute you forgot to add a dot before the slash Change from: <img src="/images/image-qr-code.png"> To <img src="./images/image-qr-code.png">

    Also put your attributes stuff below your qr-component code. That should fix it

    Hope that helps

    2
  • @shalinialisha

    Submitted

    -What are the best practices that I missed? -How could I have organized my code better? -Is this the best way to center an element vertically and horizontally?

    @TrenyceCodes

    Posted

    When you use the root element make sure to use it. You don’t need to assign the hsl, or rgb to the property if it’s in root.

    :root {
       -background-color: -background-color: hsl(212, 45%, 89%);
    }
    
    background-color: var(-background-color); 
    
    0
  • Purushoth 200

    @Purushoth6357

    Submitted

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

    After a long break, I am started relearning web development. but I did pretty well now.

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

    I struggled to find the dimensions of the card.

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

    It is a basic project.

    @TrenyceCodes

    Posted

    Hey. good job on finishing your first front end mentor challenge.

    You’re code looks clean, and readable. Good job

    For css, you can use the :root pseudo class to put all your css hex, rgb and hsl in there. Root pseudo class documentation.

    Marked as helpful

    0
  • @DoubleOWebDev

    Submitted

    Only HTML and CSS were used.

    I didn't think this was difficult at all. I know my design isn't exactly the same and I am only missing cosmetic changes.

    My only question, is there a better way to write my current code? Can I make my code more efficient?

    @TrenyceCodes

    Posted

    Good Job on creating and finishing your first frontend mentor post

    The code you posted is good but here are some changes you can make to have it more readable.

    • You can have one CSS file that is connected to your HTML file*
    • You can add the root pseudo-class to your CSS to keep all your color hsl, hexes, or rgb well structured. You can check that out here css-root-pseudo-class.
    • look at others' codes to get an understanding of the problems. Don't copy and paste because you won't learn properly
    • if you are not using the HTML elements in your HTML file, don't add them to the CSS file. This can cause a confusing and big disorganizing mess.
    • give your HTML elements ids, and classes, and use that in your CSS file.

    I hope this feedback helps. Good job on finishing your first frontend mentor post

    Marked as helpful

    1
  • @Bantei0604

    Submitted

    I find it difficult arranging the cards, other than that it was cool.

    @TrenyceCodes

    Posted

    Hey nice job on coding and finishing this project. You did great. I also struggling with arranging the cards.

    Just some tips you can look at to help if you want:

    • for your css, add the root pseudo-class so you can place all the style colors there. https://www.digitalocean.com/community/tutorials/css-root-pseudo-class
    • looking at other peoples code on GitHub with this challenge. You can see some coders/programmers that completed this challenge repository by typing in qr code component frontend mentor solution.
    • keep practicing. Even if you don’t think you did good. Posting on here shows that you are taking the first step to getting better. Everyone struggles but always keep practicing.

    Hopefully this helps you. Anyways good job on your project. Hope you continue to do these challenges

    0