Please help me to find out why my third test is failing

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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36.

Challenge: Standardize Times with the HTML5 datetime Attribute

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

Hello @i_curious!

The dot . should be outside the time tag. Also,you have an extra space between “Thursday,” and “September”…

Hope this helps! :slight_smile:

thanks @Nina1012 for reply, but that’s not working .

You’re welcome. Did you put the dot between </time> and </p>?
What message are you getting?

s<time datetime="2016-09-15">Thursday September 15<sup>th</sup></time>.May the best ninja win!</p>

same error as earlier.

I see,try to put the comma after Thursday and after that add space,like this
Thursday, September…

that bug i patched now but now test 4 is failing.
" Your added datetime attribute should be set to a value of 2016-09-15."
although i filled the correct value.

It works just fine for me,I’m using Chrome…What browser are you using?

i am using chrome , should i go for incognito mode?

You can also try resetting the challenge and doing it again. If it still fails post your latest full code again.

ok, i am going do it again. thank you!

Thank you , now it is working fine.