This page is Not Ready

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

face

Summary

Sets or retrieves the current typeface family.

Applies to ?
## Examples

This example sets the typeface family using the FACE attribute and the face property.

<FONT FACE="Arial" ID=oFont>
:
<SCRIPT>
    alert(oFont.face + "\n" + "When you click this, the font will change");
    oFont.face = 'Courier';
    alert(oFont.face + "\n" + "The font has changed.");
</SCRIPT>

View live example

Syntax

Standards information

See also

Related pages

Attributions