My time tags are wrapping around the proper text, i'm not sure what the problem is?

Tell us what’s happening:

Your code so far


<body>
  <header>
    <h1>Tournaments</h1>
  </header>
  <article>
    <h2>Mortal Kombat Tournament Survey Results</h2>
    
    <!-- Add your code below this line -->
    
    <p>Thank you to everyone for responding to Master Camper Cat's survey. The best day to host the vaunted Mortal Kombat tournament is <time datetime="2016-09-15" Thursday, September 15<sup>th</sup></time>. May the best ninja win!</p>
    
    <!-- Add your code above this line -->
    
    <section>
      <h3>Comments:</h3>
      <article>
        <p>Posted by: Sub-Zero on <time datetime="2016-08-13T20:01Z">August 13<sup>th</sup></time></p>
        <p>Johnny Cage better be there, I'll finish him!</p>
      </article>
      <article>
        <p>Posted by: Doge on <time datetime="2016-08-15T08:12Z">August 15<sup>th</sup></time></p>
        <p>Wow, much combat, so mortal.</p>
      </article>
      <article>
        <p>Posted by: The Grim Reaper on <time datetime="2016-08-16T00:00Z">August 16<sup>th</sup></time></p>
        <p>Looks like I'll be busy that day.</p>
      </article>
    </section>
  </article>
  <footer>&copy; 2018 Camper Cat</footer>
</body>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute

You are missing the closing bracket on the opening time tag.

1 Like

That’s not true. I am also having the same issue. mathieu01 has correctly put the closing bracket right before “August”. Please respond on it.

1 Like

Oh I got the clue.

mathieu01 and I were putting the code correctly but at the wrong location. mathieu01! check in the code, you’ll find a commented line -
You need to put your code there. It would accept your code then.

1 Like

What @lasjorg said is correct.

The test requires to apply the time tag in this line, the rest of the code is correct

 <p>Thank you to everyone for responding to Master Camper Cat's survey. The best day to host the vaunted Mortal Kombat tournament is <time datetime="2016-09-15" Thursday, September 15<sup>th</sup></time>. May the best ninja win!</p>

@mathieu01 has done almost everything correct except he did not close the opening tag of time, it should be

<time datetime="">Thursday
1 Like

You are right. Thanks for pointing out.

1 Like

Thanks a lot !that worked