In this article we will learn about some of the frequently asked HTML programming questions in technical like “how to change font colour in html” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “how to change font colour in html” Code Answer’s.
text color html
xxxxxxxxxx
1
<!-- If you want a color on a specific text, use this : -->
2
<p style="color:---"> Text <p>
3
4
<!-- Here an exemple if you want a blue text-->
5
<p stlye="color:blue"> Romuald <p>
6
7
<!-- If you want a specific class in a color, use css, its better-->
how to change font color in html
xxxxxxxxxx
1
<p style="color: red;">This is paragraph in RED color</p>
how to change font colour in html
xxxxxxxxxx
1
<font color="red">
2
3
Lorem Ipsum
4
5
</font>