--- id: 587d778c367417b2b2512aa9 title: Standardize Times with the HTML5 datetime Attribute challengeType: 0 videoUrl: '' localeTitle: Estandarizar los tiempos con el atributo datetime HTML5 --- ## Description undefined ## Instructions
¡Los resultados de la encuesta de Mortal Kombat realizada por Camper Cat están aquí! Envuelve una etiqueta de time alrededor del texto "Jueves, 15 de septiembre <sup> th </sup>" y agrega un atributo de datetime con el valor "2016-09-15".
## Tests
```yml tests: - text: Sus etiquetas de time deben rodear el texto "Jueves 15 de septiembre <sup> th </sup>". testString: 'assert($("time").text().match(/Thursday, September 15th/g), "Your time tags should wrap around the text "Thursday, September 15<sup>th</sup>".");' - text: Su etiqueta de time debe tener un atributo de datetime y datetime que no esté vacío. testString: 'assert($("time").attr("datetime"), "Your time tag should have a datetime attribute that is not empty.");' - text: Su atributo de datetime y datetime debe establecerse en un valor de 2016-09-15. testString: 'assert($("time").attr("datetime") === "2016-09-15", "Your datetime attribute should be set to a value of 2016-09-15.");' - text: Asegúrese de que su elemento de time tenga una etiqueta de cierre. testString: 'assert(code.match(/<\/time>/g) && code.match(/<\/time>/g).length === 4, "Make sure your time element has a closing tag.");' ```
## Challenge Seed
```html

Tournaments

Mortal Kombat Tournament Survey Results

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

Comments:

Posted by: Sub-Zero on

Johnny Cage better be there, I'll finish him!

Posted by: Doge on

Wow, much combat, so mortal.

Posted by: The Grim Reaper on

Looks like I'll be busy that day.

```
## Solution
```js // solution required ```