Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
39
Comments
533

_nehal๐Ÿ’Ž

@NehalSahu8055India6,710 points

๐Ÿค๐ŸปOpen for collaboration

Iโ€™m currently learning...

Express JS, Mongo DB

Latest solutions

  • Responsive Project Tracking Intro Component using Vanilla CSS & JS

    #accessibility#vite

    _nehal๐Ÿ’Žโ€ข6,710
    Submitted over 1 year ago

    0 comments
  • Interactive Comment Section WebApp using React JS and Tailwind

    #accessibility#framer-motion#react#tailwind-css#vite

    _nehal๐Ÿ’Žโ€ข6,710
    Submitted over 1 year ago

    1 comment
  • Joblisting WebApp using Tailwind CSS and React JS

    #animation#react#tailwind-css#vite#accessibility

    _nehal๐Ÿ’Žโ€ข6,710
    Submitted over 1 year ago

    1 comment
  • Responsive Notification Page using Tailwind CSS and Vanilla JS

    #animation#tailwind-css#accessibility

    _nehal๐Ÿ’Žโ€ข6,710
    Submitted almost 2 years ago

    0 comments
  • ToDo List Web App using tailwind css and vanilla JS

    #tailwind-css

    _nehal๐Ÿ’Žโ€ข6,710
    Submitted almost 2 years ago

    1 comment
  • Responsive Result Summary using tailwind

    #accessibility#animation#tailwind-css

    _nehal๐Ÿ’Žโ€ข6,710
    Submitted almost 2 years ago

    3 comments
View more solutions

Latest comments

  • Maikl-kโ€ข10
    @Maikl-k
    Submitted over 1 year ago

    qr-code

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    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๐Ÿ˜„

  • Ana Inocรชncioโ€ข30
    @heyannli
    Submitted over 1 year ago

    Product Card Solution

    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    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๐Ÿ˜„

  • rachidnaitlahajโ€ข20
    @rachidnaitlahaj
    Submitted over 1 year ago

    product-preview-card-component-main

    #itcss
    3
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    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
  • Gean-Junioโ€ข20
    @Gean-Junio
    Submitted over 1 year ago

    Soluรงรฃo do desafio usando HTML e CSS.

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    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
  • beowulf1958โ€ข1,890
    @beowulf1958
    Submitted over 1 year ago
    What are you most proud of, and what would you do differently next time?

    learning to use Sass variables

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

    I had a bit of trouble with centering the card at first; check on solutions to other challenges by other people and was able to finally get it centered

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

    my h1 breaks the line differently than the design jpg

    QR Code version 2 semantic HTML

    #accessibility
    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    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
  • JesnerWโ€ข210
    @JesnerW
    Submitted over 1 year ago

    flexbox + moder css :D

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    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
View more comments
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
ยฉ Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Mentor of the Week - 2nd Place

This badge is awarded to the 2nd placed community member on the weekly Wall of Fame.

Fun fact

Keypunches were used in early computing to punch precise holes in stiff paper card. The punched cards were then used for data input, output, and storage. No code linters or auto-complete suggestions to help out back then! ๐Ÿ˜…

Mentor of the Week - 3rd Place

This badge is awarded to the 3rd placed community member on the weekly Wall of Fame.

Fun fact

The Hansen Writing Ball shown in the badge was the first commercially produced typewriter. It was put into production in 1870 with its unique ergonomic design. It was overtaken in the market in 1873 by the Sholes and Glidden typewriter which was the first keyboard to utilise the QWERTY layout we now use today.

Mentor of the Month - 2nd Place

This badge is awarded to the 2nd placed community member on the monthly Wall of Fame.

Fun fact

The computer in this badge is loosely based on the Commodore PET which was one of the earliest home computers launched in 1977. It came with 4 KB of RAM...that's not a typo!

Mentor of the Week - 1st Place

This badge is awarded to the top placed community member on the weekly Wall of Fame.

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub

Oops! ๐Ÿ˜ฌ

You need to be logged in before you can do that.

Log in with GitHub