0
How to change the font style,colour,size
I am trying to change font style,colour,size but i cant be success, so can u guys help me out? Please. Is it font tag?
1 Antwort
+ 2
In your css file add the following in the tag of which you want to change
font-style: serif;
font-size: 25px;
color: red;
you will got your answer.
e.g., you want to change of the tag <p>
p{
font-style: serif;
font-size: 25px;
color: red;
}