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

  • maxcramer• 30

    @maxcramer

    Submitted

    How is the quality of the Markup? What would you of coded and what method would you have used?

    gabysantosw• 185

    @gabysantosw

    Posted

    You did a great job! The site looks good and is properly responsive. Some tips I can give:

    About the markup: I would highly advice to use the button tag instead of divs. It's more semantic and needed for accessibility. I noticed the footers links are not actually anchor tags/links, the styling is great but as a practice for the real world: these should be clickable (a tag) and wrapped in a nav tag to convey they are a navigation. Same with the social images. You can also check the report frontend mentor gives you with many tips.

    Other than that, to improve the organization of the css for other projects, you can check out BEM: http://getbem.com/introduction/, allows for more clear naming conventions and gives other recommendations.

    Keep it up 🎉

    1
  • gabysantosw• 185

    @gabysantosw

    Posted

    Great work! Looks great on all screens, good use of flexbox and organization.

    Some semantic advice I can give: Use one h2 tag and separate them using spans, instead of having two h2 one after the other. Also, the text below that main heading could be a p tag.

    Keep it up! 💪

    3
  • swethalakshmi22• 135

    @swethalakshmi22

    Submitted

    I often get confused with how different people write different code for the same result. Is there an only one way of writing code for an specific output or is there multiple ways of writing code for that same output. If suppose there are multiple ways is there an specific way in that which is an preferred way.

    And I would appreciate any type of feedback on my code.

    gabysantosw• 185

    @gabysantosw

    Posted

    Good job there! And yes, there's MANY ways to achieve the same output. For example: some people might use flexbox or css grid or none at all and get to the same result. So it all depends! IMO the best code is the one that you can understand when you see it later on (:

    A couple of tips I can give you: practice using a fixed with and a max-width: 100% to build more responsive websites. I see that you used 50% as the width for the container, that works on medium screens but on huge ones is too big and on smaller ones is too small and it breaks the other parts. The other one would be to use flexbox to center it on the page instead of setting the margins manually.

    Keep it up, its all about practice!

    1