Assessment:Creating fancy letterheaded paper

hey guys I know that there is a lot of mistakes how can I fix it

Hi again @Amr_Mohamed

Another well solved exercise. Congrats!

Two things regarding the backgrounds:

  • When using multiple backgrounds it may be a bit cleaner to use the background shorthand property. With this property all the values for one background are grouped together and you would separate multiple backgrounds with commas:

    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.2)),
                url(top-image.png) no-repeat left top,
                url(bottom-image.png) no-repeat left bottom;
    
  • For the gradient to be on top of the images (as by task description), it needs to be the first background.

See you,
Michael