How to change text color using CSS

3 Answers

0 votes
<h1>lightblue color</h1>
h1 {
    color: lightblue;
}

 



answered Jun 29, 2021 by avibootz
0 votes
<p>#33acff color</p>
p {
    color: #33acff;
}

 



answered Jun 29, 2021 by avibootz
0 votes
<p>rgb(51, 212, 255) color</p>
p {
    color: rgb(51, 212, 255);
}

 



answered Jun 29, 2021 by avibootz

Related questions

1 answer 284 views
1 answer 283 views
1 answer 246 views
1 answer 282 views
2 answers 346 views
3 answers 413 views
...