I use Html and Css only.
Being new to code, I would like to know what tools I should use in the future for this type of challenge?
Other feedback welcome !
I use Html and Css only.
Being new to code, I would like to know what tools I should use in the future for this type of challenge?
Other feedback welcome !
good job i have few suggestions for you
5).pro-cat{ font-size: small; } wrap using <small></small> tag instead
6).new-price{ color:hsl(158, 36%, 37%); }
.old-price{ margin-bottom: 0; font-size: small; text-decoration: line-through; }
button{ width:100%; padding:1rem; background-color: hsl(158, 36%, 37%); }
here you have used hsl(158,36%,37%) 2times , follow DRY principle always use css variables if you think you will use that property more than 1 im giving you an example below: :root{ --color-1:hsl(158,36%,37%); }
now i can use var(--color-1) where i want this color and if in future client wants to change this color to different color so it will be simple easy for me to do this i will just change this color in root part. i hope all suggestions will help you and learn about flex please