Tribute Page Revew

I believe this is the forum where we post assignments to review.

If not, my apologies.

CG

It looks good.

One thing I notice is that your photo isn’t centered. In your CSS you define img.center but that class of center is never applied to your img tag. That CSS block is saying “apply this CSS to any img tag that also has a class of center”. So you need to apply that class in your HTML (or theoretically in your JS.) You apply a class called cent - maybe you meant center.That like should be:

<img class="img-responsive resize center" src="https://lh3...[rest of img address]" />

Good Catch… Yeah that was a typo… Thank you for the feed back.