- 1
How to change the colour of the word?
we can use color =preferred colour for line and what is for word
6 Réponses
+ 4
CSS:
<p style="color:blue;">Blue</p>
+ 2
ok tks bro
+ 2
OR...... For whole text, inside body tag: text="red" , inside style tag: color : red ;
+ 1
<font color="colour name">
<P>....... </P>
</FONT>
+ 1
For one word do like this : <p>This is a <span class="redText">red</span> word in a sentence</p> Use the span tag before and after ur WORD , then add inside style tag a class : .redText {color : red ;}
0
uses the font tag