Added solution to "01-Responsive Web design" challenge (#36971)

pull/36996/head
CubeSky 2019-10-03 16:38:49 +01:00 committed by Huyen Nguyen
parent 3099f303ed
commit 40e6ddca31
1 changed files with 23 additions and 2 deletions

View File

@ -78,7 +78,28 @@ tests:
## Solution
<section id='solution'>
```js
// solution required
```html
<style>
.red-text {
color: #F00;
}
.fuchsia-text {
color: #F0F;
}
.cyan-text {
color: #0FF;
}
.green-text {
color: #0F0;
}
</style>
<h1 class="red-text">I am red!</h1>
<h1 class="fuchsia-text">I am fuchsia!</h1>
<h1 class="cyan-text">I am cyan!</h1>
<h1 class="green-text">I am green!</h1>
```
</section>