Computer >> Computer tutorials >  >> Programming >> HTML

How do we set text font in HTML?


The <font> tag was used to set the font in HTML, but it is now deprecated. Use CSS for the same purpose.

Example

You can try to run the following code to change the font of text in HTML −

<!DOCTYPE html>
<html>
   <body>
      <h2>Tutorialspoint</h2>
      <p>Learning videos</p>
      <p style = "font-family:'Courier New'">Learning content</p>
   </body>
</html>