Search This Blog

CSS Text Color Example

CSS Text Color Example :
<!DOCTYPE html>
<html>
<head>
<title> kod4u </title>
<style type="text/css">
body {
color: blue;
}
h1 {
color: #00ff00;
}
</style>
</head>
<body>
<h1> Text Color Example </h1>
<p> Here Text color property is used to set text color of webpage. </p>
</body>
</html>
OUTPUT
CSS Text Color Example

No comments:

Post a Comment