<font> tag, is used to specify the text color.
- <font Color=”Blue”>
- <font color=”rgb(128,128,0)”
- <font color=”#00FF00″>
<!DOCTYPE html>
<html>
<head>
<title>
Example of color attribute
</title>
</head>
<body>
<font color="orange">
<!-- The color attribute of font tag sets the color name 'orange' for the word Great Learningt-->
<center>
<h1>
Great Learning
</h1>
</center>
</font>
</body>
</html>