Added a solution to fix stub (#34813)

I am brand new to FCC and contributing on Github. I read the guide from FCC on best contributing practices, but this is all still very overwhelming to me.  If I did something incorrectly in my first attempt at a pull request, please let me know.
This commit is contained in:
Nelson Wu 2019-02-17 11:41:48 -05:00 committed by Paul Gamble
parent 251fd0f4c1
commit 6128976cc5

View File

@ -60,6 +60,17 @@ tests:
<section id='solution'>
```js
// solution required
<style>
body {
background-color: black;
font-family: monospace;
color: green;
}
.pink-text {
color: pink;
}
</style>
<h1 class="pink-text">Hello World!</h1>
```
</section>