Challenge help - Applied Accessibility: Standardize Times with the HTML5 datetime Attribute

Tell us what’s happening:
I can’t figure out what is missing here:-

Thank you to everyone for responding to Master Camper Cat's survey. The best day to host the vaunted Mortal Kombat tournament is thurday, september 15th. May the best ninja win!

Your code so far


<body>
<header>
  <h1>Tournaments</h1>
</header>
<article>
  <h2>Mortal Kombat Tournament Survey Results</h2>

  <!-- Only change 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">thurday, september 15<sup>th</sup></time>. May the best ninja win!</p>

  <!-- Only change 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/83.0.4103.116 Safari/537.36 Edg/83.0.478.64.

Challenge: Standardize Times with the HTML5 datetime Attribute

Link to the challenge:

First thing I notice is you have thurday (missing the ‘s’) not Thursday. Try starting there. If that’s not it come back.

1 Like

Wrap a time tag around the text “Thursday, September 15th

yours is all lower case, it seems you rewrote it

tournament is **for**<time datetime="2016-09-15"> (Missing the word FOR. Please don’t add the **** when correcting code)
Thursday (T is lowercase, S is missing)

Tried it bro, but not fixed.

Could be a capitalization thing. I just ran this and it passed. I capitalize September.

The S has to be Uppercase.