What is the CSS Code to Change Font Color

I am trying to change the font color of a word in my HTML. how can I do that with CSS? I am beginner in the CSS, that’s why asking such silly questions. :slight_smile:

You can use color: "value" to change the font color. For exmaple

h1 {
    color: green;
}
body {
color: #333333;
}