added 01-responsive-web-design/basic-css/ (#22531)

I have added use rgb-to-mix-color
pull/22532/head
Anuj Jindal 2018-11-25 22:50:27 +05:30 committed by Christopher McCormack
parent 4890289e75
commit bdbf83e5a2
1 changed files with 22 additions and 1 deletions

View File

@ -82,6 +82,27 @@ tests:
<section id='solution'>
```js
// solution required
<style>
.red-text {
color: rgb(255, 0, 0);
}
.orchid-text {
color: rgb(218, 112, 214);
}
.sienna-text {
color: rgb(160, 82, 45);
}
.blue-text {
color:rgb(0, 0, 255);
}
</style>
<h1 class="red-text">I am red!</h1>
<h1 class="orchid-text">I am orchid!</h1>
<h1 class="sienna-text">I am sienna!</h1>
<h1 class="blue-text">I am blue!</h1>
```
</section>