Standardize Times with the HTML5 datetime Attribute help me

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> 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/67.0.3396.99 Safari/537.36.

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

You may not add the quotes here, and you should close your time tag before the dot

i do but still it didn’t work

Can you provide what you have tried…?

Found the problem.

There’s a period in side your time tag that shouldn’t be there.

Just move the period to the outside of the tag and you’ll pass

sorry i can’t understand what you want to say…

Make it look like this

< /sup>< /time>.

i do but it didn’t work:sleepy:

Can you provide what you have tried…?

<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>.the best ninja win!</p>

There must be quotes around the text "Thursday, September 15<sup>th</sup>"

Note: Also have a space before September

1 Like