Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
21
Comments
19
Rohit Kumar
@rohitKumar38344

All comments

  • Alamin•1,980
    @CodeWithAlamin
    Submitted about 2 years ago

    Age Calculator app w/ Dark Mode

    #accessibility#sass/scss
    2
    Rohit Kumar•560
    @rohitKumar38344
    Posted about 2 years ago

    congratulation Alamin, for completing your challenge. Your solution looks perfect. Your design exactly matches the design provided in the challenge. Hope to see such more solutions in future. Happy Coding :D

  • Mary Nabwire•40
    @Mary83-ops
    Submitted over 2 years ago

    QR code component using html and css

    4
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 2 years ago

    You have used the wrong syntax on box-shadow property on element having class (.card) It should be like this box-shadow: 0px 3px 25px; . You don't have to seperate the values using commas. Refer to mdn: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow to read more about box-shadow. Happy Coding :D

    Marked as helpful
  • Yashraj Dudhatra•170
    @yashraj1309
    Submitted over 2 years ago

    Fylo Landing Page With Two Column Layout

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 2 years ago

    Congratulations yashraj1309 for completing your challenge. Your design is same as expected just make the web page responsive so that it can be accessible on different screen sizes and try to write to add some meaningful description in alt attrib because it is readed by the screen readers. Apart from that there are some issues pointed by frontend mentor in the generated report just fix them. Happy Coding :D

  • Xhan88•60
    @Xhan88
    Submitted over 3 years ago

    flex

    #astro#bulma#airtable
    3
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago
    * {
        margin: 0;
        padding: 0;
        box-sizing: 0;
    }
    

    ** You should use value of box-sizing property: border-box not 0 because it's invalid value

    Marked as helpful
  • Andrew Ezeani•430
    @ezeaniiandrew
    Submitted over 3 years ago

    A simple Profile Card

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    congratulations for completing your challenge. Your design is looks good. I have a suggestion for you: you can also use <hr/> element instead of empty div to place that line with the same property as you applied on div except width 100% on hr

  • Archie Hanafi•0
    @meneerhanafi
    Submitted over 3 years ago

    order summary component

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    congratulations @meneerhanafi for completing your challenge. Your design looks good. But try to add hover state on the button itself, currently hover state is active only anchor tag inside the button tag. Try to add it on button

  • Lasha•20
    @lashagelashvili
    Submitted over 3 years ago

    Responsive landing page using scss

    #sass/scss
    3
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Everything looks good. You just forget to add background image on header section

  • Danteie•300
    @Danteie
    Submitted over 3 years ago

    Not great Not terrible 3.6

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago
    1. Remove the test div it's unnecessary placed in the solution.
    2. Remove the display: flex property from main it's not necessary
    3. Use vw instead of px to apply background image with respect to viewport
    body {
        background: url("images/bg-pattern-top.svg"),url("images/bg-pattern-bottom.svg");
        *** background-position: top -66vw left -46vw, bottom -76vw right -38vw; ***
        background-repeat: no-repeat;
        background-size: cover;
        background-color: var(--cyan);
        background-blend-mode: overlay;
        display: flex;
        height: 100vh;
        justify-content: center;
        align-items: center;
        font-family: 'Kumbh Sans', sans-serif;
    }
    
    Marked as helpful
  • Danila•110
    @ColdLikeMcFlurry
    Submitted over 3 years ago

    Profile card component

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    congratulations for completing your challenge. Feedback: just fix the bottom border of info section by this: border-bottom: 2px solid #eee; info { margin-top: 65px; border-bottom: 2px solid #eee; padding-bottom: 30px; }

  • Avinash Shukla•200
    @Luci04
    Submitted over 3 years ago

    Testimonials grid section

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    1: Remove the margins from h4 so that content along the image can be center because due to margins content along the image is not centered even after using align items property 2: apply the margin between the paragraphs and h4

    Good work keep coding :D

    Marked as helpful
  • Sonu Swapan Dutta•530
    @Sonu-Dutta
    Submitted over 3 years ago

    Testimonials Grid Section

    #accessibility
    3
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Your need to use background property to section-1 instead of background-image for short hand background: url("path of image") no-repeat; otherwise you can also use specific css properties for background like background-image, background-repeat, and then apply background-position property to position the image, otherwise you did great work To know more: https://developer.mozilla.org/en-US/docs/Web/CSS/background-image

    Marked as helpful
  • edouard herrengt•970
    @EdouardHrgt
    Submitted over 3 years ago

    Vanilla html / css integration using GRID

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    congratulations @EdouardHrgt for completing your challenge. I have learnt a lot from your code. My suggestion for you: 1,You can use margin: 100px auto on container to center it instead of using absolute positioning. 2, You can also remove the explicit height from container it's make content little bit stretchy. 3, You can remove gap property it's written unnecessarily in your code. 4, You can remove the width and height 100% on col-1 it's not necessary there. 5, on h1 you can remove the width as well it will fix your layout and from paragraph as well inside col-1

    Hope it helps :D

    Marked as helpful
  • Fuad Zarzar•40
    @Fuadzarzar
    Submitted over 3 years ago

    NFT preview card component challenge hub

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Good work @Fuadzarzar You just need to remove semicolon from text inside p tag of class title-container and you can also use border-bottom property on info-container instead of hr because now you can style the border using css perfectly, otherwise everything look's good Keep coding :D

    Marked as helpful
  • Theresa•30
    @tscherli
    Submitted over 3 years ago

    CSS, HTML

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Congratulations @tscherli for completing your challenge. Here's the link to my solution: https://www.frontendmentor.io/solutions/html-css-flexbox-E5IjnTThH You can use this to refactor your code on HTML as well as CSS side, because you use some unnecessary code in your solution.

  • Issa•10
    @Issasoftdev
    Submitted over 3 years ago

    NFT Preview Card using CSS Flexbox

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Congratulations @Issasoftdev for completing your challenge. Here's the feedback from my side: Your code looks good just remove the font-size from the paragraph then your layout will looks exactly same as the given in the challenge.

    Marked as helpful
  • Christian Lam•20
    @ui-Auxilary
    Submitted over 3 years ago

    HTML5 CSS Flexbox - Responsive Stats Card Component

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Yes you can use a div inside the aside to act as an overlay and apply following properties on it: .overlay { position: absolute; background-color: hsla(277, 87%, 32%, 0.58); border-radius: 0px 5px 5px 0px; inset: 0px; /* Here you can use top, left, right, bottom properties also*/ } putting the background image set on aside which you set already.

  • Kheyyon Parker•10
    @keyy123
    Submitted over 3 years ago

    My First Challenge

    2
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago

    Your live URL link is not working first fix it using: https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site

  • LyleRems•60
    @LyleRems
    Submitted over 3 years ago

    NFT - Preview card - using Flexbox

    1
    Rohit Kumar•560
    @rohitKumar38344
    Posted over 3 years ago
    1. You can use gap property of flexbox on div having class of "left-div" instead of using margin-left on img
    2. Next you can use align-items property on left-div with value "center" because img icon seems to be stretched due to default behaviour of flex items.
    3. Remove the width of 30% on right-div because of it content is stretched

    except of all of these everything is perfect. Good work :D

    Marked as helpful
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

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

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