The Tribute Page TEST

Almost done with my Tribute Page but i’m stuck with the number 16, 17 and 19. i already checked all my code from the test 1-15 and 18, still i can’t find where i’ve mistaken in my code.

Here is my Html:

<DOCTYPE html>
<head>
  <link rel="stylesheet" href="style.css">
</head>  
  <body>
<main id="main">
<h1 id="title">Tribute page</h1>
<div id="img-div">
<img id="image" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg">
<div id="img-caption">img-caption</div>
</div>
</div>
<div id="tribute-info">Tribute info
<a id="tribute-link" href="https://cdn.freecodecamp.org" target="_blank"></a>  
</div>
</main>
</body>
</html>
#image {
  display: block;
  max-width: 100%;
  height: auto;
}

can you share a link to the challenge please?

**HERE **

did you notice that your css is not applied?
if you add

body {
  background-color: red;
}

nothing happen

make sure your css is working

1 Like

i just noticed that i did a style.css linking instead of styles.css :sweat_smile:.

it worked, thanks.

great job in figuring it out yourself!