Latest comments
- @angielxx@dbenny1
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.
- @francxrusso@dbenny1
Great 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 helpful - @cattheelephant@dbenny1
Great 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 helpful