Hi @Shaker1 ,
Few issues in the code: Tribute Page - Build a Tribute Page
- In the
<meta charset="UTF-8>
tag, there is a missing closing double quote. It should be<meta charset="UTF-8">
. - The CSS property for centering text is
text-align
, nottext-center
. So, the linefigure, img { text-center: center;}
should be replaced withfigure, img { text-align: center;}
. - The
href
attribute in the<a>
tag is empty. You should provide a valid URL for thehref
attribute. - The
img
tag is missing thesrc
attribute, which specifies the source URL of the image. Add the appropriate image URL to thesrc
attribute.