<html>
<body>
<!-- OLD WAY OF WRITING FONT -->
<font size="5px" color="red">This is Red text!</font>
<font size="12" color="blue">This is Blue text!</font>
<font face="Verdana" color="green">This is Green Verdana text!</font>
<!-- NEW WAY OF WRITING FONT -->
<div style="color: red; font-size: 18px; font-family: Verdana; font-weight: bold;">This is a new code</div>
</body>
</html>
<body>
<!-- OLD WAY OF WRITING FONT -->
<font size="5px" color="red">This is Red text!</font>
<font size="12" color="blue">This is Blue text!</font>
<font face="Verdana" color="green">This is Green Verdana text!</font>
<!-- NEW WAY OF WRITING FONT -->
<div style="color: red; font-size: 18px; font-family: Verdana; font-weight: bold;">This is a new code</div>
</body>
</html>
Post a Comment