Horje
How to change Text Color

The CSS color property defines the text color for an HTML element:


Sample of changing text color HTML Code

<h1 style="color:blue;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>

Full Example of Text Color HTML Code

The CSS color property defines the text color for an HTML element:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1 style="color:blue;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>

</body>
</html>

Output should be:

Full Example of Text Color HTML Code





Category:
Web Tutorial
Sub Category:
HTML Styles
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference