@faha1999
Posted
Hello, David Congratulations on finishing this project. It's lovely and great on the whole! Just a little tip:
- You might want to use semantic tags like the
<main>
to wrap your code, instead ofdiv
. like
<main class="grid-container"></main>
This would help improve accessibility.
-
do not put
anchor
tag insidebutton
read more -
update
background: #e0e8ff url(../../images/pattern-background-desktop.svg) no-repeat center -20%/contain;
in thebody
-
Instead of using
px
, use relative units likerem or em
to perform better when the information on your page needs to be resized for multiple screens and devices.REM
andEM
apply to all sizes, not justfont-size
. You can code your entire page inpx
and then, at the very end, use the VsCode pluginpx to rem
to perform the automatic conversion px to rem
I hope it will work. Happy coding.