You've got a really good handle on basic CSS properties, demonstrated by your reproducing the web page exactly and keeping your CSS nice and DRY. Good job!
Make sure you get into the habit of giving your images alt attributes and containing sections of related code inside divs so it's more organized.
See if you can make your code better by including some semantic HTML5 elements. These are elements like header, footer, main, and section, that describe your webpage a little more than the traditional div.
Satisfactory 👍
You've got a really good handle on basic CSS properties, demonstrated by your reproducing the web page exactly and keeping your CSS nice and DRY. Good job!
Make sure you get into the habit of giving your images alt attributes and containing sections of related code inside divs so it's more organized.
See if you can make your code better by including some semantic HTML5 elements. These are elements like
header
,footer
,main
, andsection
, that describe your webpage a little more than the traditionaldiv
.