Back to Content

HTMLFontElement: face property

files/en-us/web/api/htmlfontelement/face/index.md

latest1.3 KB
Original Source

{{deprecated_header}}{{ APIRef("HTML DOM") }}

The obsolete HTMLFontElement.face property is a string that reflects the face HTML attribute, containing a comma-separated list of one or more font names.

The document text, in the default style, is rendered as the first font face that the client's browser supports. If no font listed is installed on the local system, the browser typically defaults to the proportional or fixed-width font for that system.

The format of the string must follow one of the following HTML microsyntax:

MicrosyntaxDescriptionExamples
List of one or more valid font family namesA list of font names, that have to be present on the local systemcourier,verdana

Value

A string.

Examples

js
// Assumes there is <font id="f"> element in the HTML

const f = document.getElementById("f");
f.face = "arial";

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • The {{domxref("HTMLFontElement")}} interface it belongs to.