tidy-html5/test/html5/html4/font5.html
2014-08-08 17:50:12 +02:00

18 lines
428 B
HTML

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>font tag</title>
</head>
<body>
<p><font size="3" color="red">Some text, size=3, color=red!</font></p>
<p><font size="2" color="blue">Some text, size=2, color=blue!</font></p>
<p><font face="verdana" color="green">Some text, face=verdana, color=green!</font></p>
<p><strong>Note:</strong> The font element is not supported in HTML5. Use CSS instead.</p>
</body>
</html>