Latest solutions
Responsive form page using flexbox
PSubmitted 4 months agoThe JavaScript code. If ever you have a more refined way of writing the code, please don't hesitate to show me.
Thank you :)
Profile card solution
PSubmitted 9 months agoIf anyone has suggestions when it comes to the right positioning of those two svg files serving as background.
That would really satisfy my soul. I would finally be in peace.
Social links solution
PSubmitted 9 months agoWith anything.
Just check out how I wrote the whole thing and don't hesitate to give feedbacks on any areas I could improve.
Thanks and happy coding guys! :)
Latest comments
- @TheSilentMSubmitted 9 months agoP@kevinrasataPosted 9 months ago
The provided HTML and CSS are generally well-structured, but there are a few areas where improvements can be made to enhance the readability, maintainability:
- Ensure to use semantic tags to enhance readability, consider using <article> or <section> instead of just <div>.
- Improve alt text for images to provide better context.
- Avoid repetitive code within media queries by using more fluid design principles.
- Avoid using absolute positioning and fixed percentages for responsive layouts. Flexbox or CSS Grid can be used more effectively.
- Combine repetitive styles within media queries.
- Use box-sizing: border-box; globally to handle padding and border better.
0