setting the text font of a div in html code example
Example 1: make text blue html
<p style="color:blue;">This paragraph is blue.</p>
Example 2: css change text size
p {
font-size: 150% /*px, cm, in, etc.*/;
}
<p style="color:blue;">This paragraph is blue.</p>
p {
font-size: 150% /*px, cm, in, etc.*/;
}