css style color code example
Example 1: how to link css to html
<link rel="stylesheet" href="styles.css">
Example 2: text color css
.YourClass {
color: #ff0000;
}
<link rel="stylesheet" href="styles.css">
.YourClass {
color: #ff0000;
}