Home  >  Article  >  Web Front-end  >  How can we set text font in HTML?

How can we set text font in HTML?

WBOY
WBOYforward
2023-09-02 08:37:06872browse

The

How can we set text font in HTML?

# tag was used to set the font in HTML, but is now deprecated. Use CSS to achieve the same goal.

Example

You can try running 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:&#39;Courier New&#39;">Learning content</p>
   </body>
</html>

The above is the detailed content of How can we set text font in HTML?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete