Fix subtitle translation (#34433)

* Fix subtitle translation

- add solution

* Apply suggestions from code review

Co-Authored-By: CleoAguiar <cleotaisas@gmail.com>

* fix: added full solution
This commit is contained in:
Cleo Aguiar
2019-05-06 17:55:25 -03:00
committed by Randell Dawson
parent 9add16b0a7
commit d259580de4

View File

@ -62,7 +62,24 @@ tests:
## Solução ## Solução
<section id='solution'> <section id='solution'>
```js ```html
// solution required <head>
<style>
body {
color: hsl(0, 55%, 15%);
background-color: hsl(120, 25%, 55%);
}
</style>
</head>
<body>
<header>
<h1>Deep Thoughts with Master Camper Cat</h1>
</header>
<article>
<h2>A Word on the Recent Catnip Doping Scandal</h2>
<p>The influence that catnip has on feline behavior is well-documented, and its use as an herbal supplement in competitive ninja circles remains controversial. Once again, the debate to ban the substance is brought to the public's attention after the high-profile win of Kittytron, a long-time proponent and user of the green stuff, at the Claw of Fury tournament.</p>
<p>As I've stated in the past, I firmly believe a true ninja's skills must come from within, with no external influences. My own catnip use shall continue as purely recreational.</p>
</article>
</body>
``` ```
</section> </section>