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

  • @Manshiporiya

    Submitted

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

    I’m most proud of successfully creating a fully responsive landing page using only CSS. The design adjusts well to different screen sizes, offering a seamless user experience on mobile, tablet, and desktop. I also enjoyed experimenting with CSS Flexbox for layout management and improving the page’s visual appeal through custom styling.

    What would you do differently next time? Next time, I would aim to implement more advanced CSS techniques like CSS Grid for complex layouts. I would also focus on optimizing page load times by reducing the number of external assets, such as fonts and images, and perhaps explore CSS animations to add interactivity. Additionally, I would spend more time refining accessibility features to ensure the site is more user-friendly for individuals with disabilities.

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

    Responsive layout issues: The page didn’t look good on all screen sizes at first.

    Solution: Used Flexbox and media queries to fix alignment and spacing. Cross-browser compatibility: Styles looked different on some browsers.

    Solution: Added vendor prefixes and tested across multiple browsers. Design consistency: Some elements had uneven spacing.

    Solution: Simplified the CSS by reusing classes for common styles.

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

    CSS Optimization: I'd appreciate feedback on how to further optimize my CSS code to reduce redundancy and improve maintainability. Are there specific areas where I could simplify the styling or use more efficient techniques?

    Responsive Design Enhancements: While I used media queries and Flexbox, I’d like suggestions on improving the responsiveness, especially for more complex layouts. Any tips on making the design more fluid for various screen sizes?

    Cross-browser Compatibility: I'm looking for feedback on ensuring better compatibility with older browsers. Are there any tools or techniques I may have missed to help with this?

    Performance Optimization: Are there ways to improve page load speed, particularly regarding CSS? For example, any tips on reducing file size or improving rendering times?

    These areas would greatly benefit from expert input to make the project even more robust and efficient.

    @faraz-ch1

    Posted

    Nice work. If you give the container a specific width and give margin auto on both left and right the box will get in center, it'll be auto responsive on all screens.

    0
  • @IvanFdez01

    Submitted

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

    Using flex and grid layouts. Knowing all their varieties.

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

    I don't know how to remove all the white space on the mobile version (for me when screen.width < 900px). Maybe a body or .card classes problem.

    @faraz-ch1

    Posted

    It is because in @media query you are giving body white background color. Removing it will solve the problem.

    0
  • @GamingClaus

    Submitted

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

    I am proud of how i am able to achieve a similar result and i would like to use better tools next time to achieve this faster

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

    to be honest while doing this challenge the most challenge part for me was the one with the :hover preview one where you have to show the icon and a aqua background as well and i did achieve something similar to it but i couldnt get the aqua background.

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

    i would like the help in getting the aqua background with the icon while hovering onto the image

    @faraz-ch1

    Posted

    Try giving it background color like this: background-color: rgba(0, 255, 247, 0.5); It will give overlay the color.

    0
  • @Sachinkush0406

    Submitted

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

    I just started the Front-end Crouse and i take this challenge and to test my beginners skill in this and I done it pretty well.

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

    When i started this challenge I just encountered a single problem with the QR code box , it was not going in the center of the web page and then i watch some video and google it then i understand and make it done.

    @faraz-ch1

    Posted

    It's easy, give box a width, then on the parent give margin left and right auto. It will make it in center and will also be responsive automatically.

    Marked as helpful

    0
  • @ElderAdewoye23

    Submitted

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

    i am most proud of the fact that i can make it very identical to what i was given

    what i will do differently next time is to write the codes more clean but as a beginner, i feel glad to be able to do this

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

    The responsiveness, i am not that good with that yet

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

    Building responsive website

    @faraz-ch1

    Posted

    Responsiveness is not that big of a problem. Consider all the sections on webpage boxes, now when the screen gets smaller the boxes need to be arranged, so use @media queries to arrange them on screen. That's the general idea. I hope it helps.

    Marked as helpful

    1
  • @Unzila02

    Submitted

    It is difficult first but after i start the thing getting easier. the difficultly is to arrest the width . i am sure if i solve multiple challenges i will become best in programming.

    @faraz-ch1

    Posted

    Nice work, you can use percentage for container and image sizes or rem instead of pixels, this way when you will use media queries for responsiveness it will automatically adjust and you will need to write very short code for responsiveness.

    Marked as helpful

    1