HTML Text Color Explain
The color property defines the text color for an HTML element.
Html Code:
<!DOCTYPE html>
<html>
<body>
<h1 style="color:blue;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>
</body>
</html>
Html Code Result:
This is a heading
This is a paragraph.
Post a Comment