Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
17
Comments
610

hitmorecode

@hitmorecode7,540 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

  • Testimonials grid section


    hitmorecode•7,540
    Submitted 8 months ago

    1 comment
  • Recipe page solution


    hitmorecode•7,540
    Submitted 9 months ago

    0 comments
  • Social links profile done with Flexbox


    hitmorecode•7,540
    Submitted over 1 year ago

    0 comments
  • Blog Preview Card


    hitmorecode•7,540
    Submitted over 1 year ago

    1 comment
  • Interactive rating component


    hitmorecode•7,540
    Submitted about 2 years ago

    0 comments
  • social proof section master


    hitmorecode•7,540
    Submitted about 2 years ago

    1 comment
View more solutions

Latest comments

  • Adriana Salinas•10
    @Adri2106
    Submitted 3 days ago
    What are you most proud of, and what would you do differently next time?

    Next Time Id like to be able to add the correct fonts for the text

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

    it was a challenge to me to create a box and center it, I overcomed it by searching on google

    Using some css styles as width, height

    1
    hitmorecode•7,540
    @hitmorecode
    Posted 3 days ago

    Congratulations good try. Just a few tips to improve your work.

    • To place the card in the center of the page, you can use either CSS grid or flexbox. Never use margin or padding to center an element on a page.
    • Your card is just to big, make it smaller. Use the design file to compare the size.
    • You are not using the correct font-family.
    • It's bad practice to add CSS inside your HTML. Only use this method if you want to do some quick checks. Create a CSS file and add your CSS in that file and link that file to your HTML file.
    • You don't have to add a class on the body.
    • Make it a habit of using CSS reset.
    • Avoid using named colors, instead use HEX, RGB or HSL.
    • The background-color on the body does not match the design file.

    I hope you find this helpful. Good luck on your coding journey 😁. Keep it up

  • sheenaxiv•10
    @sheenaxiv
    Submitted about 1 month ago
    What are you most proud of, and what would you do differently next time?

    I'm proud that I was able to put this together quickly.

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

    I noticed there is a 5px height difference between the Figma design file and my finished project. Did this project need to be pixel perfect? And, did I use the correct semantic HTML tags? I appreciate any and all feedback since this is my first time having anyone review my code.

    QR Code Component using Flexbox

    2
    hitmorecode•7,540
    @hitmorecode
    Posted about 1 month ago

    Congratulations well done, looks good. It doesn't have to be pixel perfect as long as it's close to the design file it's ok. As for your markup avoid uising div's semantic html is the way to go. Adding font-size 16px is not necessary, by default font-size is 16px. You forgot to add box-sizing: border-box; on the CSS reset.

    Hope you find this helpful. Keep it up 👍

  • P
    Hosea Marcus Calalang•50
    @Marcusgb21
    Submitted about 2 months ago
    What are you most proud of, and what would you do differently next time?

    I am proud of understanding responsive design and applying it to this project.

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

    I had some trouble laying out the design as it took a while for me to get going. After I was able to get the first part of the design going, everything else followed.

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

    I would like some help in getting the first part of the design faster. It took me quite a while as I got overwhelmed at first. Any feedback on my code would be appreciated.

    Responsive Product Preview Card Component

    2
    hitmorecode•7,540
    @hitmorecode
    Posted about 1 month ago

    Congratulations well done, looks good. I still have some tips

    • Avoid using divs, make a habit of writing semantic html. This is better for screen readers.
    • To switch the image from desktop to mobile, use the picture element. Click the link to see the video Kevin Powell picture elemen.
    • The border radius on the top right corner of the image can be removed.
    • For the price with the line-through you could have used the <del> tag.
    • Avoid using pixels for text, use rem, em instead.

    I hope you find this helpful. Keep it up 👍

    Marked as helpful
  • Husniddin Jabborov•310
    @husniddinjabborov-web
    Submitted about 2 months ago
    What specific areas of your project would you like help with?

    If you look at the bottom of the image on the left, there is a little bit of background, a white image. I couldn't get rid of it. Any solutions, mistakes, or ideas would be appreciated.

    Product preview card component

    1
    hitmorecode•7,540
    @hitmorecode
    Posted about 2 months ago

    Congratulations looks good. The issue you have can be solved by removing align-items: center

    main section {
        width: 600px;
        display: flex;
        justify-content: center;
        /* align-items: center; */ remove this line
        background-color: white;
        border-radius: 10px;
    }
    

    I hope you find this helpful. Keep it up 👍

    Marked as helpful
  • Toan Nguyen•40
    @toanrb
    Submitted about 2 months ago
    What specific areas of your project would you like help with?

    I have a habit of setting rem as 10px:

    :root {
      font-size: 10px;
    }
    

    so, for example, if I want a 16px font size for body, I use:

    body {
      font-size: 1.6rem;
    }
    

    At the CSS report, I got a declaration-property-unit-disallowed-list warning, which told me to consider using relative units.

    Is this a bad practice, responsive design wise?

    Blog preview card

    1
    hitmorecode•7,540
    @hitmorecode
    Posted about 2 months ago

    Nice looks good. As for your question this is what you can do. On the root set the font-size to 62.5% and on the body set the font-size to 1.6rem. This should solve your problem. Once you have done this you can just use rem instead of px. This converts pixels to a base 10 numbering so if you have 20px you can just type in 2rem. Just divide every pixel by 10 and you have the result in rem.

    Make it a habit writing semantic html. Avoid using divs

    I hope you find this helpful. Keep it up 👍

  • Pornchanok Pinnuwat•30
    @ppearyxx
    Submitted about 2 months ago
    What are you most proud of, and what would you do differently next time?

    I try to write this by myself not study from YT first. and better improve in CSS style learning.

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

    I learn to play CSS component since I haven't played this much. but ya still didn't know it at all but it's good start for me.

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

    Still not sure about responsive. Also, I have learned that we can't use gap since gap only works when the parent container is using display: flex, display: grid, or display: inline-flex/grid. May need to know more about it. Will try to improve!

    Social link profile practice HTML&CSS.

    2
    hitmorecode•7,540
    @hitmorecode
    Posted about 2 months ago

    Congratulations looks good. I do have some tips

    • Avoid using divs, practice using semantic html.
    • Add hover animation on the buttons.
    • I've seen that you repeated yourself a few times in the CSS file. Avoid this at all cost.
    .container h2 {
      padding-top: 20px;
      padding-bottom: 10px;
      color: hsl(0, 0%, 100%);
      text-align: center;
    }
    
    .container p {
      padding-bottom: 20px;
      color: hsl(0, 0%, 80%);
      font-size: 14px;
      text-align: center;
    }
    

    You could combine them like this

    h2, p {
      text-align: center;
    }
    
    • You are missing a h1 tag. Every page must have one h1 tag.

    I hope you find this helpful. Keep it up 👍

    Marked as helpful
View more comments

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

Beta Member

This badge is a shoutout to the early members of our community. They've been around since the early days, putting up with (and reporting!) bugs and adjusting to big UX overhauls!

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 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 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.

Mentor of the Month - 1st Place

This badge is awarded to the top placed community member on the monthly 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