dmgross / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Summary #5

Open jim-rosales opened 6 years ago

jim-rosales commented 6 years ago

Grade: Meets Expectations

Summary: Daniel congrats on finishing the Dasmoto project! You showed you know how to use classes to apply CSS efficiently which reduces redundant CSS.

A couple of things to keep in mind when working on future projects are including the alt attribute for images and documenting both your files. The alt attribute is used by screen readers to describe relevant content on your site which is helpful for visually impaired users. On the other hand, documenting both your HTML and CSS files makes them easier to read which increases collaboration between several people.

As a challenge try adding hover effects, you'll have to learn a new technique, but this reference might help you get started. Keep up the good work!

dmgross commented 6 years ago

Thanks Jim!

Thanks for catching the alt attribute - I'll make an extra effort to include it in future projects :).

I'm checking out hover effects right now!

Can you explain a little more what you mean to document my files?

Thanks again!

dmgross commented 6 years ago

I added this css for the hover effect: h2:hover{ color: blue;

thanks!