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

  • Maikl-k 10

    @Maikl-k

    Submitted

    frontend mentor is cool

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To dynamically center the card. Don't use margins
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Don't use multiple <p> for the single descritption use only one.

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    1
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Use min-height:100vh instead of height:100vh To dynamically center the card

    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    1
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • Use <button></button> for button as it a semantic element

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • P

    @SarahCooper-TC

    Submitted

    Can you use Display: block instead of Display: flex for this?

    QR-Code CSS/HTML

    #accessibility#web-components

    2

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Use min-height:100vh instead of height:100vh To dynamically center the card
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    1
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To dynamically center the card use min-height:100vh instead of height:100vh
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Don't use margins to center the card, To dynamically center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Don't use paddings or margins for centering the card as it will not dynamically center the card remove this and use either flex or grid for the same

    • To properly center the card

    • USING FLEXBOX on the parent element

    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    
    • You are wrapping main and footer inside a div its unnecessary to do this.

    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Regarding your image issue

    • Since you are using your site with vite your images will not work unless you put your qr-image inside public folder
    • Tip : You can generate a new screenshot after making the necessary changes

    I hope you find this helpful.

    Happy coding😄

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To dynamically center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Add min-height:100vh to your .seccion_results_summary_component to dynamically center the card.

    • Use responsive units(rem, em, %) from next project to increase responsiveness. Explore respective use cases on google.

    • Use max-width instead of width to make your design responsive.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    1
  • @marisamie

    Submitted

    Hi I'm beginning for front-end developer this is my QR Code Payment create by use HTML and CSS if you have any suggestion pls feel free to comment me I want to practice more an more :)

    HTML and CSS for QR Code Payment

    #contentful#cube-css#webflow#wordpress#accessibility

    3

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    0
  • Joey 10

    @joelbaah

    Submitted

    Unsure about the attribution styling.

    Open to suggestion on how I can improve my overall code & best practices.

    Thanks!

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Don't use position or margins for centering the card as it will not dynamically center the card remove this and use either flex or grid for the same
    .qrcard {
        /* position: relative; */
        /* top: 50%; */
        /* left: 50%; */
        /* transform: translate(-40%,40%); */
    }
    
    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    1
  • julian 90

    @lspacka

    Submitted

    I must say, CSS and especially responsive design are still my weakest points. any feedback on improving on these areas would be most appreciated, or just any feedback in general. Thanks!

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Remove margins and add min-height:100vh to your .qr-container to dynamically center the card.

    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    2
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • Use semantic element for strike-through <s>$169.99</s>

    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Don't use position for centering the card as it will not dynamically center the card remove this and use either flex or grid for the same
    .container {
        /* position: relative; */
        /* top: 50%; */
        /* left: 50%; */
        /* transform: translate(-40%,40%); */
    }
    
    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • @Swotantra55

    Submitted

    Growing the height of the imageContainer div when the contents of the productInfo div increases was something I found challenging.

    Does my design look too big? Should I reduce the size of the image and fonts?

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".
    • Use cursor:pointer for interactive elements like button here also give some opacity down on hovering.
    • Headings should always follow sequential order h1, h2, h3, h4..... Also here only one heading is required for 'Gabriel Essence .....' if you are not considering accessibility.
    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    1
  • bks999 30

    @bks999

    Submitted

    I had some issues with the images that didn't show properly with tag img, and I had to change it to content: url()..

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design.

    • Using margins to center the card is bad practice as it will not dynamically center it , To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".
    • Use semantic element for strike-through <s>$169.99</s>
    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • Alex 1,310

    @AlexKolykhalov

    Submitted

    Hello my friends!

    Features:

    1. Controlled by keyboard and Tab
    2. Theme selector
    3. Animated click event

    If you find some bugs, please report me. Any comments are welcome.

    _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hey Alex!

    Overall your solution looks great

    I was just checking then I found out that when I divide lets say 9/5 then it gives 1,8 it should be 1.8

    Happy Coding

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Hello Coder 👋.

    Congratulations on successfully completing the challenge! 🎉

    Few suggestions regarding design

    • For Image use
    • HTML
    <picture class="main__picture-header">
          <source media="(min-width: 600px)" srcset="./images/desktop-header.webp">
          <img src="./images/mobile-header.webp" alt="give a proper alt" class="main__header-image" width="540" height="446">
        </picture>
    
    • CSS
    .main__picture-header {
        background: var(--soft-violet);
    }
    
    .main__header-image {
        mix-blend-mode: multiply;
        opacity: .75;
        object-fit: cover;
    }
    

    I hope you find this helpful.

    Happy coding😄

    Marked as helpful

    0
  • _nehal💎 6,730

    @NehalSahu8055

    Posted

    Few suggestions regarding design.

    • Use min-height:100vh instead of height:98vh to your body to dynamically center the card.

    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding😄

    2