HTML tag (Not Supported in HTML5)

HTML tag is used to define the font style for the text contained within it. It defines the font size, color, and face or the text in an HTML document.

NOTE: Do not use HTML tag as it is deprecated in HTML5, so you can use CSS properties to change the font size, face, color, etc.

Syntax

Following are some specifications about the HTML tag

Display Inline
Start tag/End tag Both Start and End tag
Usage Font Style

Example 1

Test it Now

Output:

HTML font tag

Using CSS

The same effect can be achieved using CSS properties as in below example:

Test it Now

Output:

HTML font tag

Attribute

Tag-specific attribute

Attribute Value Description
colod rgb(X,X,X)
#xxxxx
color_name
It specifies the color of the content. (Not Supported in HTML5)
face font_family It specifies the typeface of the content. (Not Supported in HTML5)
size number It specifies the size of the content. (Not Supported in HTML5)

Supporting Browsers

Element chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari
Yes Yes Yes Yes Yes
Next TopicHTML footer Tag




Contact US

Email:[email protected]

HTML font Tag
10/30