Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The HTML Font Element (<font>
) defines the font size, color and face for its content.
Usage note:
Do not use this element! Though once normalized in HTML 3.2, it was deprecated in HTML 4.01, at the same time as all elements related to styling only, then obsoleted in HTML5.
Starting with HTML 4, HTML does not convey styling information anymore (outside the <style>
element or the style attribute of each element). For any new web development, styling should be written using CSS only.
The former behavior of the <font>
element can be achieved, and even better controlled using the CSS Fonts CSS properties.
Like all other HTML elements, this element supports the global attributes.
color
face
size
1
to 7
with 1
being the smallest and 3
the default. It can be defined using a relative value, like +2
or -3
, which set it relative to the value of the size
attribute of the <basefont>
element, or relative to 3
, the default value, if none does exist.This element implements the HTMLFontElement
interface.
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
color |
Yes | Yes | Yes | Yes | Yes | Yes |
face |
Yes | Yes | Yes | Yes | Yes | Yes |
size |
Yes | Yes | Yes | Yes | Yes | Yes |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
color |
Yes | Yes | Yes | Yes | Yes | Yes | Yes |
face |
Yes | Yes | Yes | Yes | Yes | Yes | Yes |
size |
Yes | Yes | Yes | Yes | Yes | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font