Nice job using div tags to divide your page into logical sections, like the three equivalent product sections and the header section. 👍
I'd recommend using the same class name for each div tag, like product or item, since each product section is mostly styled the same way and can be styled as a group, and using a different ID for each h2 tag, since each of these headings needs to be selected and styled individually.
https://github.com/angelojohngage/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/index.html#L10-L15
Nice job using
div
tags to divide your page into logical sections, like the three equivalent product sections and the header section. 👍I'd recommend using the same class name for each
div
tag, likeproduct
oritem
, since each product section is mostly styled the same way and can be styled as a group, and using a different ID for eachh2
tag, since each of these headings needs to be selected and styled individually.