Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
28
Comments
22

Mirza Monirul Alam

@WebDevMirzaDhaka, Bangladesh680 points

I’m a mysterious individual who has yet to fill out my bio. One thing’s for certain: I love writing front-end code!

Latest solutions

  • Ecommerce Product App with react.js

    #react#vite

    Mirza Monirul Alam•680
    Submitted over 2 years ago

    0 comments
  • Loopstudios Landing Page with react typescript

    #react#typescript#vite

    Mirza Monirul Alam•680
    Submitted over 2 years ago

    0 comments
  • Fully RESPONSIVE Design without any media query =>Typescript and React

    #react#typescript#vite

    Mirza Monirul Alam•680
    Submitted over 2 years ago

    0 comments
  • Interactive Pricing Components

    #react#typescript#vite

    Mirza Monirul Alam•680
    Submitted over 2 years ago

    0 comments
  • project tracking intro with react and typescript

    #react#typescript#vite

    Mirza Monirul Alam•680
    Submitted over 2 years ago

    0 comments
  • News Homepage

    #react#typescript#vite

    Mirza Monirul Alam•680
    Submitted over 2 years ago

    0 comments
View more solutions

Latest comments

  • Mark Hatala•40
    @hmark94
    Submitted over 2 years ago

    Responsive Card details form with live update. React, Tailwind CSS

    #react#tailwind-css
    1
    Mirza Monirul Alam•680
    @WebDevMirza
    Posted over 2 years ago

    Hi,

    To validate a form in react, you can use formik and yup package. They are easy to use and have enough resources in docs on how to apply to a project.

    Thank you.

    Marked as helpful
  • uepzues•270
    @uepzues
    Submitted over 2 years ago

    stats-preview-card-component

    1
    Mirza Monirul Alam•680
    @WebDevMirza
    Posted over 2 years ago

    Hi,

    I skim through your code line by line. I want to share my views.

    HTML

    • You use picture source combination to deal with device oriented pictures which is the best in my opinion. 👍 👍

    I also found some areas where you can improve your code.

    HTML:

    • Give a <h1></h1> with small font size to solve Page should contain a level-one heading warning.
    • Provide an alt text for image to solve Images must have alternate text error.

    CSS:

    main {
        ........................
        ........................
        letter-spacing: 0.05em;
        line-height: 1.6;
    }
    
    • Add this two line of code and observe the change. Spacing is important to improve design.

    Apart from this, the rest of the part is great.👍 I hope, this might help you. 👍👍👍

    Thank you.

  • Tiago R. Oliviera•40
    @tiago-ro
    Submitted over 2 years ago

    Responsive page using flexbox

    1
    Mirza Monirul Alam•680
    @WebDevMirza
    Posted over 2 years ago

    Hi,

    Congratulation on this solving this project.

    • You do not need alt text inside source tag.
    • Use alt tag in img.
    <picture>
            <source media="(min-width: 376px)" srcset="images/image-product-desktop.jpg" >
            <img src="images/image-product-mobile.jpg" alt="Perfume Channel Gabrielle">
          </picture>
    

    I hope that it might help you. 👍

    Thank you.

    Marked as helpful
  • link-din•10
    @danilo-easy33
    Submitted over 2 years ago

    CHALLENGE HUB Profile card component

    1
    Mirza Monirul Alam•680
    @WebDevMirza
    Posted over 2 years ago

    Hi,

    Congratulation on completing this project. You have already found a problem regarding bg-image.

    HTML:

    • Every html should have a main tag that you have not applied. Wrap everything inside <main></main> to solve accessibility WARNING that you have now. main is used for the unique part of the site where any repeated sections such as nav, sidebar, footer are not allowed. For more info visit W3 School

    CSS 🙂

    body {
      background: url(../img/bg-pattern-top.svg) no-repeat right 50vw bottom 40vh,
        url(../img/bg-pattern-bottom.svg) no-repeat left 50vw top 54vh;
     background-color: hsl(185, 75%, 39%);
    }
    
    • This will add the background images at the position that they should be. 🧐

    Apart from this, the rest of the part looks nice.👍

    Marked as helpful
  • Kaique•40
    @KaiqueNeres
    Submitted over 2 years ago

    CHALLENGE HUB Profile card component

    1
    Mirza Monirul Alam•680
    @WebDevMirza
    Posted over 2 years ago

    Hi,

    Congratulation on completing this project. You have already found a problem regarding bg-image.

    HTML:

    • Every html should have a main tag that you have not applied. Wrap everything inside <main></main> to solve accessibility WARNING that you have now. main is used for the unique part of the site where any repeated sections such as nav, sidebar, footer are not allowed. For more info visit W3 School

    CSS 🙂

    body {
      background: url(../img/bg-pattern-top.svg) no-repeat right 50vw bottom 40vh,
        url(../img/bg-pattern-bottom.svg) no-repeat left 50vw top 54vh;
     background-color: hsl(185, 75%, 39%);
    }
    
    • This will add the background images at the position that they should be. 🧐

    Apart from this, the rest of the part looks nice.👍

    Marked as helpful
  • GTM•10
    @GautamArora7
    Submitted over 2 years ago

    First practice

    2
    Mirza Monirul Alam•680
    @WebDevMirza
    Posted over 2 years ago

    Hi,

    I found several issues where you can improve your code.

    HTML:

    • Wrap everything inside <main></main> to solve accessibility WARNING that you have now. main is used for the unique part of the site where any repeated sections such as nav, sidebar, footer are not allowed. For more info visit W3 School
    • Give a <h1></h1> with small font size to solve Page should contain a level-one heading warning.

    CSS

    p {
        font-size: 15px;
        text-align: center;
        color: hsl(220, 15%, 55%);
        padding: 10px 25px;
    }
    
    • You can use shadow in .card for good appearance:
    .card {
           box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    }
    

    Best of Luck. 👍 Thank you.

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

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