- Are my class names appropriate?
- I don't know how to organize CSS codes.
Benny
@dbenny1All comments
- @angielxxSubmitted about 2 years ago@dbenny1Posted about 2 years ago
Awesome job.
You should try to reduce the use of divs. Use proper semantic HTML like section, article etc.
I advise you use divs for design purpose.
For my class names, I use camel case.
1 - @francxrussoSubmitted about 2 years ago
Hello everyone! This is my second project on Frontend mentor, I am still not confident with rem em .. I tryed my best. Every kind of help or advice is accepted!
Thank you
@dbenny1Posted about 2 years agoGreat job Francesca! You did a great job.
You should indent your code properly next time. I had a bit difficulty read through your HTML file. Excellent job nevertheless. You're on the right track.
Marked as helpful0 - @cattheelephantSubmitted about 2 years ago
-What did you find difficult while building the project? -Which areas of the code would you improve on? -Any advice on best practices and resources for future projects?
@dbenny1Posted about 2 years agoGreat job! You should use semantic HTML next time. It helps a lot for accessibility (like screenreaders etc.). Instead of,
`<div class="main"></div> <div class="footer"></div>`
You can use,
`<main></main> <footer></footer>`
Plus, your img tag should have an alt attribute.
Marked as helpful0