Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML font tag</title> </head> <body> <h2>Example of bad usage</h2> <p>This is the <font size="3" color="red">wrong way</font> to style text.</p> <h2>Alternative</h2> <p>This is the <span style="font-size:16px; color:green;">right way</span> to style text.</span> <p><strong>Note:</strong> To learn more about style rules please study tutorials on <a href="#">CSS</a>.</p> </body> </html>