What I want to do is to make the word "THIS" blue without having to make a second paragraph.
<html>
<body>
<center>
<h3 style=font-family:Calibri;font-size:50px;>test site</h3>
<p>everything here is a regular color but i want <b>THIS</b> to be blue.</p>
</center>
</body>
</html>
Could somebody help me with this problem?
>Solution :
<html>
<body>
<center>
<h3 style=font-family:Calibri;font-size:50px;>test site</h3>
<p>everything here is a regular color but i want <b style="color:blue;">THIS</b> to be blue.</p>
</center>
</body>
</html>