Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @kaoutar-ouadih

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm proud of completing this challenge!

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

    .

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

    .

    Lena 230

    @lenanle333

    Posted

    Great job in creating a responsive website! The layout looks great and it looks very similar to the original design.

    Here is some feedback:

    1. Make sure you're sizing down the fonts so that tablet and mobile views can get the best user experience.
    2. I see that you applied a lower opacity for the footer image, that ended up making the elements within it transparent as well.
    3. When using header tags, make sure there is only one h1 tag on a page and make sure you are using them in order (h2 → h3 → h4...). You can always change the font sizes accordingly.

    Lastly, this is a tip that was given to me in a previous challenge that I thought would be helpful to you.

    📌 You can use the <picture> tag when you have different versions of the same image.
    
    Using the <picture> tag will help load the correct image to the user's device, saving bandwidth and improving performance.
    
    Example:
    
    <picture>
        <source media="(max-width: 460px)" srcset="{desktop image path here}">
        <img src="{mobile image path here}" alt="{alternative text here}">
    </picture>
    
    0
  • @plantpirate

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm glad I got my solution to even look close to the design. I'm most confident with how I placed the grid items. I don't know if making named grid areas is the best way to go, or by telling the grid items how many rows/columns to span,

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

    Placing the grid. I tried using "place-content: center;" but I couldn't get that to work (I know there has to be a reason.) so I used the horizontal auto margin method instead.

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

    I feel like I need to get better control of grid placement, any feedback for use in the future is appreciated.

    Should these footers with copyright info ~always~ be placed at the bottom?

    Lena 230

    @lenanle333

    Posted

    Hi friend!

    Your code gave me more insight on how to use grid-template-area so thank you! I feel like the way you used grid areas was very intuitive.

    To use place-content you need to set a display to the container like grid or flex!

    My go to method for centering containers is something like this

    container {
       display: flex;
       justify-content: center;
       align-items: center;
    }
    

    I've been removing the footer completely... I just shout Frontend Mentor in my github. Hopefully I don't get in trouble for it [:

    However, good work dude!!

    Marked as helpful

    1
  • @machleslie

    Submitted

    What are you most proud of, and what would you do differently next time?

    I did it well enough

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

    I don't have any problem

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

    I don't have any

    Lena 230

    @lenanle333

    Posted

    Looking good! Something I would recommend is using "img" tags and including the svg file instead of including the entire svg in your html.

    0
  • @NAQEEB26

    Submitted

    What are you most proud of, and what would you do differently next time?

    My proud is that I am just using custom HTML and CSS for making this design. I designed this card without using any framework. Its look like great without any framework. Next time I will be more efficiently and professionally design the product and also using advance tools to solve my challenge.

    Lena 230

    @lenanle333

    Posted

    Hi friend! Good efforts in your solution. Something that I am learning and recently trying to implement more in my projects are accessible code. I think you should give it a shot in your next challenge. It could be as simple as using meaningful tags for containers and headers and always including an alt text for images. Small projects like this are great for practice!

    0
  • Lena 230

    @lenanle333

    Posted

    Great job Nick! Something I would recommend for responsive websites is to prioritize mobile designs first and build the desktop design after.

    0
  • @sayeedmunees

    Submitted

    What are you most proud of, and what would you do differently next time?

    Tried to make it look pixel-perfect without even having the Figma file with dimensions.

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

    I have encountered a few issues with the margin and padding as I haven't got the Figma file.

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

    Any suggestions are all welcomed.

    Lena 230

    @lenanle333

    Posted

    Your solution looks great dude! I'm amazed by how close you got it without having the Figma file. I also liked how you didn't keep the links static and they actually redirect you to a website. Nice work!

    0
  • P

    @oviozi

    Submitted

    What are you most proud of, and what would you do differently next time?

    I tried to keep it as vanilla as possible.

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

    Making it look close to the design on different viewport sizes. I managed it by going through 2 css books and experimenting a lot.

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

    Just some honest feedback. Thanks

    Lena 230

    @lenanle333

    Posted

    Your solution looks awesome! The only feedback I have is to set a width and height property to the card so that on the desktop view it's a bit smaller. You also did great on the responsiveness of the site (:

    Marked as helpful

    0
  • @Amulyaa2564

    Submitted

    What are you most proud of, and what would you do differently next time?

    I've never used media query while making webpages..this time i learned about it to complete my task...and i learned to deploy my project in github also..I'll try to submit all my webpages in github from now

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

    As i don't know anything about github....i learned everything by the articles provided in this site..I had overcome this situation by creating a github account..by installing git bash..and deploying my code in git hub

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

    I want my project to be about jss which i haven't learned...by doing these projects i try to learn them

    Lena 230

    @lenanle333

    Posted

    I recommend looking at youtube tutorials and documentation for git. It doesn't look like you pushed your finished code to github

    Marked as helpful

    0