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>

Updated on: 24-Jun-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements