Build a Tribute Page evaluation

Hello, I did the tribute page for the exercice: “Build a Tribute Page evaluation”, I didnt get a evaluation of my work (x/9). Is it normal? I probably missunderstood something.

Could anyone tell me if I did 9/9 and if not, tell me my mistakes.

HTML:

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>


<div id="main">
<header id="title"> <h1 id="title">The only question</h1>  </header>
</div>


<body> 
  <h2> writting is a science   </h2> 

  <p> In the univers there is two things, sexe and knowledge. The rest is a substitute of those. </p>
  
  <img class="img" id="img-div" src="https://media.timeout.com/images/100710825/630/472/image.jpg"><h5 id="img-caption"> I think says the statue.</img>
  
  <br>
  <br>
  
  
  <div id="tribute-info"> We want to answer that deep question!</div>
  
  <form id="form">
    <h3> Do you agree?</h3>
    <ul><li>yes</li>
        <li>no</li>        
        <li>maybe</li> 
                      </form>
    <a class="img" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDMKM48iS-xxsDOqT4uFsD4Bzjtw1Hsx4JzwGrFU-_ZV-SXGuHcw" id="tribute-link" target="_blank">

</body>

CSS:

body {
  background-color: #a3d5d3;
}
.img {
	max-width:100%;
	max-height:100%;
  text-align: center;
}

-My browser information: https://codepen.io/PatrisD/pen/KKKVOgo

-User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36.

-Link to the challenge: https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-projects/build-a-tribute-page

Thanks a lot!

David

Yes because, you haven’t completed all the task yet.
This is what u need to do
1 open code pen io in chrome
2 click the tribute page from the dropdown menu
3 click run test
4 now click the 6/10
it should now tell u what u need to work onto

1 Like

this 4 tricks works.

Oh great, indeed it works. Thanks a lot.

I m at 8/10, I really don’t understand why my css class “img1” doesnt have an influence on the output.

I defined this in css:

.img1 {
	max-width:100%;
  text-align: center;
}

in html I use the class here:

<img id="image" class="img1" src="https://media.timeout.com/images/100710825/630/472/image.jpg"><h5 id="img-caption"> I think says the statue.</img>````