You can use the following code to set the font size of the text in the Web page to 12 pixels and set the color to #666 (gray):
Body{font-size:12px;color: #666}
Example:
<!DOCTYPE HTML><HTML><Head><Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8"><title>Font size, color</title><styletype= "Text/css">Body{font-size:12px;Color:#666;}. Stress{font-size:20px;Color:Red;}#p{font-family:"Calibri";font-size:30px;Color:#953;}</style></Head><Body> <H1>Courage</H1> <P>When I was in third grade, I was a<spanclass= "stress">Timid</span>Little girl, in class never dare to answer the teacher asked questions, afraid to answer the wrong teacher will criticize me. Have never had the courage to answer the questions asked by the teacher. I didn't have the courage to take part in the school events.</P> <PID= "P">By the third grade next semester, our class had a public class, the teacher proposed a very simple<span>Problem</span>, a lot of classmates in the class have raised their hands, even worse than me, also raised his hand, also said: "I come, I come." "I looked around for four weeks, so I didn't raise my hand.</P></Body></HTML>
Text layout-font size, color (font-size, colors)