أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
You can add internal styling tag of color with html selectors p and h in <head> tag.
eg; <style>
p{color:your color}
h1{color:your color}
note you can use any css tag style element in internal styling.
Text color :
p , h1 { color : green ; }
Background color :
p , h1 { background-color: yellow;}
both :
p , h1 {
color : green ;
background-color: yellow;
}
To change P and H1 text colors use:
p { color: blue;}
h1 { color: red;}
To change P and H1 background colors use:
p { background-color: red;}
h1 { background-color: blue;}