How can we set text font in HTML?

WBOY
Release: 2023-09-02 08:37:06
forward
891 people have browsed it

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>
Copy after login

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!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!