Issues on first project


I did a thing its not exactly amazing but this is what I would link at the project page correct? I am confused because the page talked about tests.

Your code so far

Your browser information:

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

Link to the challenge:

The tests are the User Story in the image:


To see if you pass the tests, you must copy that script, and paste at the top of the html in this way:

<script src="https://gitcdn.link/repo/freeCodeCamp/testable-projects-fcc/master/build/bundle.js"></script>
Rest of your HTML

Hi @PatrickPettibone :slight_smile: ,

HTML

  • error

id-“sedol” is not a valid attribute of the <h2> element
( the problem is the “-” after “id”)

  <h2 id-"Sedol">Life of Lee Sedol</h2L>
  • error

The <div> element cannot be a child of the <h2> element.
( the problem is the “L” after “h2” )

  <h2 id-"Sedol">Life of Lee Sedol</h2L>
  • error

“image” is not a valid attribute of the <img> element.
(the problem is the missing “=” after “id”)

<img id "image" src="http://www.slate.com/content/dam/slate/forum/uploads/2016/03/10/514592622-in-this-handout-image-provided-by-google-south-korean.jpg.CROP.promo-xlarge2.jpg" 
  • error

id:“img-caption” is not a valid attribute of the <div> element.
( the problem is the “:” after “id” )

 <div id:"img-caption"> Lee sedol showing off his trademark calm before facing off against Googles, ai Alpha Go.

‘<ul’ is not a valid attribute of the <div> element.
( the problem is the missing > )

<div id= "tribute-info"
<ul>

The <li> element cannot be a child of the <div> element.
( the problem is the missing > )

 <div id= "tribute-info"
       <ul>
  <li><strong>1983</strong>  Lee Sedol is born on a small island in western korea and learns go from his father</li>

Cheers and happy coding :slight_smile:

Wow thank you I’ll look through your feedback now.

1 Like

You are welcome :slight_smile: