Me orgulho por estar a entender melhor o assunto das unidades, sobre quais e quando usá-las. Na próxima vez espero conseguir implementar sem muito esforço.
Cristian
@neouruguayancrAll comments
- @olivioruiSubmitted 10 days agoWhat are you most proud of, and what would you do differently next time?@neouruguayancrPosted 9 days ago
The code is on track, but it is recommended to improve accessibility, ensure that the design is fully responsive and semantic, and optimize the code structure to make it more modular and easy to maintain.
0 - @ArfatbdcSubmitted 7 months agoWhat are you most proud of, and what would you do differently next time?
I learned basic HTML and CSS previously, I created this project by myself using basic html & css with occasional help from Google.
What challenges did you encounter, and how did you overcome them?I challenge the margin and padding of the recipe page, and after that I overcome this using Google search.
What specific areas of your project would you like help with?Beautiful Responsive Recipe page with simple html & css
beautiful & Responsive Recipe page using simple , basic html and css
#accessibility#contentful#foundation#materialize-css#itcss@neouruguayancrPosted 10 days agoEnsure your layout adjusts seamlessly across various devices. Implementing a fluid grid system and media queries can help achieve this.Consider using CSS Flexbox for layout management. Flexbox simplifies the process of aligning and distributing space among items in a container, making your design more flexible and responsive.Maintain consistent margins, paddings, and font sizes throughout the page to ensure a cohesive design.
0 - @kshr-kumarSubmitted 9 months agoWhat are you most proud of, and what would you do differently next time?
I will try to explore more
What specific areas of your project would you like help with?Professional coding
@neouruguayancrPosted 5 months agoEnsure you are using semantic tags like <header>, <nav>, <main>, and <footer> for better structure. For instance, wrapping your profile section in a <section> or <article> tag could enhance the clarity of the content.
0 - @cesmsdevSubmitted 5 months ago@neouruguayancrPosted 5 months ago
- Semantic HTML:
I noticed that while your HTML structure is generally clear, it could benefit from more semantic elements. For example, using <header>, <main>, and <footer> tags will improve the document’s structure and help screen readers navigate more effectively. 2. Accessibility Improvements:
Consider adding alt attributes to any images or icons to enhance screen reader compatibility. Also, ensure that color contrast meets WCAG standards to support users with visual impairments. It might be helpful to implement keyboard navigation for any interactive elements, ensuring that users can navigate through the content without a mouse. 3. Responsive Layout:
The layout looks good on desktop, but I recommend testing it on a range of mobile devices. Use media queries to adjust styles for smaller screens. Ensure that text remains readable and buttons are appropriately sized for touch interactions. 4. Code Structure and Readability:
Overall, the CSS is well-organized, but consider using comments to explain sections of your code. This makes it easier for others (and future you) to understand your thought process. Use consistent naming conventions for classes and IDs to enhance readability. For example, consider adopting a BEM (Block Element Modifier) methodology to make your CSS more maintainable. 5. Alignment with Design:
Your solution aligns well with the design, but there are a few minor spacing discrepancies. Reviewing the design specifications for padding and margins could help achieve a closer match. Questions for You:
Are there any specific areas of the project where you feel uncertain or would like additional feedback? Have you considered implementing any CSS preprocessors like SASS or LESS to streamline your styles? If so, I’d love to hear about your experiences! Overall, great work! I'm excited to see how you continue to refine your solution.
0