changing color of text css code example
Example 1: text color css
.class {
color: white;
}
Example 2: text color css
body {
color: blue;
}
h1 {
color: green;
}
Example 3: changong text color css
color: #EAF6F6;
color: red;
color: rgb(255, 255, 255);