Testing, testing font colours in rich editor
<!DOCTYPE html>
<html>
<head>
<title>
HTML font face Attribute
</title>
</head>
<body>
<font size="6"
face="verdana"
color="green">
GeeksforGeeks!
</font>
<br>
<font size="6"
face="arial"
color="#008000">
GeeksforGeeks!
</font>
<br>
<font size="6"
color="rgb(128, 128, 0)">
GeeksforGeeks!
</font>
</body>
</html>