Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
10
Comments
11
Abdessamad
@styrexx

All comments

  • David de Oliveira Silva•80
    @davidOliveira1995
    Submitted over 2 years ago

    Project using HTML and CSS | FlexBox

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to make your solution better.

    • Fix the issues that have been reported.

    • You can use a grid to center the content no matter the viewport size. You can do the following:

    body {
    	min-height: 100vh;
            display: grid;
    	align-items: center;
    	justify-content: center;
    }
    
    • Fix the issues that have been reported.

    I hope you find this helpful.

    Marked as helpful
  • Vikash Maurya•310
    @VikashMaurya10
    Submitted over 2 years ago

    stats-preview-card-component-main

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to your solution to be better.

    • To color the image : Go to your HTML file and add a div at the bottom of the image
    <div class="color"></div>
    

    And in your CSS file

    img{
        height: 100%;
        mix-blend-mode: multiply;
    }
    .img{
        background-color: hsl(277, 64%, 61%);
        position: relative;
    }
    .color{
        background-color: hsl(277, 64%, 61%);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
    }
    

    To understand better go to my solution maybe you can find it useful here is the 🌐 link.

    I hope you find this helpful.

  • DHEERAJ PUJYAM•200
    @dheeraj-90040
    Submitted over 2 years ago

    Stats preview card component

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to your solution to be better.

    • Wrap "Improve Your Front-End Skills By Building Projects" with an <h1> instead of <h2> element. Each page should have at one <h1>.

    • To improve your skills in the responsive layout you have to begin with Mobile-first.

    • To color the image : Go to your HTML file and add a div at the bottom of the image

    <div class="color"></div>
    

    And in your CSS file

    img{
        height: 100%;
        mix-blend-mode: multiply;
    }
    .img{
        background-color: hsl(277, 64%, 61%);
        position: relative;
    }
    .color{
        background-color: hsl(277, 64%, 61%);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
    }
    

    To understand better go to my solution maybe you can find it useful here is the 🌐 link.

    I hope you find this helpful.

  • P
    Cloud Custodian•80
    @joeterlecki
    Submitted over 2 years ago

    QR Component Vanilla HTML/CSS

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    Congratulations on completing your first Frontend Mentor challenge! 🎉

    There are a few changes you can make your solution better.

    • Wrap "Improve Your Front-End Skills By Building Projects" with an <h1> instead of <h2> element. Each page should have at one <h1>.

    • Fix the issues that have been reported.

    • To have a nice paragraph you can increase opacity.

    I hope you find this helpful.

  • Lucian•20
    @JoaquimVicente
    Submitted over 2 years ago

    Perfume MediaQ

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to make your solution better.

    • You can use a grid to center the content no matter the viewport size. You can do the following:
    body {
    	min-height: 100vh;
            display: grid;
    	align-items: center;
    	justify-content: center;
    }
    
    • Fix the issues that have been reported.

    I hope you find this helpful.

  • Aditya-768•50
    @Aditya-768
    Submitted over 2 years ago

    Responsive Qr-code using HTML and CSS

    #foundation
    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to make your solution better.

    • It is better to set the background-color to your <body>, not some <div>

    • To have a better responsive page you can use a flexbox to center the content no matter the viewport size. You can do the following:

    body {
    	min-height: 100vh;
            display: flex;
    	align-items: center;
    	justify-content: center;
    }
    
    • Fix the issues that have been reported.

    I hope you find this helpful.

    Marked as helpful
  • Nwajei Edgar•110
    @Otakuwind
    Submitted over 2 years ago

    Stats-preview-card-component

    1
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to your solution to be better.

    • You have to change the <div> in to <image> to have a better control to your images

    • To color the image :

    • Go to your HTML file and add a div at the bottom of the image

    <div class="color"></div>
    
    • And in your CSS file
    img{
        height: 100%;
        mix-blend-mode: multiply;
    }
    .img{
        background-color: hsl(277, 64%, 61%);
        position: relative;
    }
    .color{
        background-color: hsl(277, 64%, 61%);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
    }
    
    • To understand better go to my solution maybe you can find it useful here is the link

    I hope you find this helpful.

  • Jihane•140
    @Jijinet
    Submitted over 2 years ago

    3-column-preview-card-component-main using HTML & CSS

    1
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    There are a few changes you can make to make your solution better.

    • You should use only one <h1> tag per page. The <h1> tag is the most important heading tag, This can confuse screen reader users and search engines. This challenge requires that Sedans, SUVs, and Luxury are headings, but you can use the <h2> tag instead of the <h1> tag.
    • Fix the issues that have been reported.

    I hope you find this helpful.

    Marked as helpful
  • Mpano•20
    @mpanoathos
    Submitted over 2 years ago

    QR code component

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hello there 👋. You did a good job!

    Congratulations on completing your first Frontend Mentor challenge! 🎉

    There are a few changes you can do to make your solution better.

    • Wrap "Improve Your Front-End Skills By Building Projects" with an <h1> instead of <p> element. Each page should have at one <h1>.
    • Fix the issues that have been reported.
    • You have to change the font

    I hope you find this useful. Happy coding! 😄

  • Laynoks•10
    @Laynoks
    Submitted over 2 years ago

    qr-code-component

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hi, Laynoks! 👋

    Congratulations on completing your first Frontend Mentor challenge! 🎉

    There are a few changes you can do to make your solution better.

    • Wrap "Improve Your Front-End Skills By Building Projects" with an <h1> instead of <div> element. Each page should have at one <h1>.
    • Fix the issues that have been reported.

    I hope you find this useful. Happy coding! 😄

  • mwergles•20
    @mwergles
    Submitted over 2 years ago

    QR code component

    2
    Abdessamad•210
    @styrexx
    Posted over 2 years ago

    Hi! Mwergles You do a good work

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