CSS: Day 64

Chanak Karki
2 min readJun 29, 2021
Day 64 in yellow
Day 64 in yellow

Today, I saw a website with colorful text and I thought, I would like to recreate it and that was the task for the day.

The sentence “hello, how are you guys?” colored in rainbow colors
The sentence “hello, how are you guys?” colored in rainbow colors

Now, let’s look into the code:

//HTML
<div class="container">
<p>Hello, how are you guys?</p>
</div>

--

--