font

Introduction

HTML font tag is used to specify the font size, font color, and face of text.
The font tag is not supported in HTML5. Use CSS instead.

Code

<body>
  <h1>Font</h1>
  <p>
	<font size="5" color="red" face="Arial">
	This is a paragraph.
	</font>
  </p>
</body>
Output:

Font

This is a paragraph.