My first every website using CSS and HTML

Solution retrospective
please rate my first ever page
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Kerri-AnnBates
Not bad for your first ever page! Good job! 👏
First thing I wanted to point out is regarding your css file. I see that you have your .css file in your images folder. Look into structuring your project in a way so that it will be easy to find files as needed. You should put your syelesf.css in a separate folder labeled 'styles' or 'css', that way another developer or you in the future will know where to find that file easily. images folder is just that, for images only.
Another thing I wanted to add is that you're using
position: absolute
to center text. There is a much easier way to center text usingtext-align: center
instead. Setting position to absolute will take your elements out of the normal flow of the document which is causing overlapping in this case as you make the screen size smaller.Keep experimenting and practicing!
Marked as helpful - @MikeDevMar
Hello, thank you so much you really just made my day. I will so my absolute bets to work on my weaknesses and learn more. :)
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord