CSS Text color setting
Setting text-color in css3:
<!DOCTYPE html><html>
<body>
<h3 style="color:Tomato;">Hello World</h3>
<p style="color:DodgerBlue;">HELLO.</p>
<p style="color:MediumSeaGreen;"> Technisis</p>
</body>
</html>
Output:
Hello World
HELLO
Technisia
Comments
Post a Comment