css font color

CSS
h1 {  
  color: green;
} p{
	color: White;
}/* Answer to: "css text style" */

/*
  Honestly, it'll take a while to answer this "question" due to it
  being very non-specific, however, I'd suggest that you have a look
  at these two links:

  https://www.w3schools.com/css/css_text.asp
  https://www.w3schools.com/cssref/pr_font_font-style.asp
*//*Here two ways are mentioned*/
#one{
    font-family: 'Impact';
    color: red;
    font-size: 25px;
}
#two{
    font-family: 'Times New Roman';
    color: blue;
    font-size: 50px;
}
.three{
    font-family: 'Impact';
    color: red;
    font-size: 25px;
}
.four{
    font-family: 'Times New Roman';
    color: blue;
    font-size: 50px;
}
color:#ffffff;body {
  color: blue;
}


h1 {
  color: green;
} 
Source

Also in CSS: