CodeNewbie Community 🌱

Discussion on: Finishing my Landing Page project

Collapse
 
aaron profile image
Aaron McCollum

Hey! Thanks for the comment. CSS is getting better as I’ve gotten more used to flexbox. World changer for sure haha.

The lack of semantic HTML is my fault 100%. FCC definitely has a section on it, and I need to do better at using it for accessibility. Part of the reason I am putting my FCC projects on GitHub is to go back and improve them later, and part of that will be accessibility semantic HTML.

Collapse
 
sheriffderek profile image
sheriffderek

Part of the reason I am putting my FCC projects on GitHub is to go back and improve them later

Yes, of course! : )

But there's no reason to type <div id="header"> when you can use the <header> element the first time. It's easier - for you! And it's correct. Some things will certainly be refactored later - but I'm just suggesting that you get the muscle memory for the basics - now while you're learning, and you can use that refactoring time for things that are much more complex. ;)

Keep up the good work!

Thread Thread
 
aaron profile image
Aaron McCollum

Thanks will do!