W3Schools.com

Style fontFamily Property

Style Object Reference Style Object

Definition and Usage

The fontFamily property sets or returns a list of font-family names and/or generic-family names for text in an element.

The browser will use the first value it recognizes.

There are two types of font-family values:

  • font-family: The name of a font-family, like "verdana" or "arial"
  • generic-family: The name of a generic font-family, like "serif" or "sans-serif"

Tip: Always specify a generic-family name as the last alternative!

Note: If a font-family name contains whitespace, it must be quoted.

Tip: Look at Websafe fonts for commonly used font combinations.

Syntax

Set the fontFamily property:

Object.style.fontFamily="font1, font2, etc.|inherit"

Return the fontFamily property:

Object.style.fontFamily

Value Description
font1, font2, etc. A comma-separated list of font-family names and/or generic-family names
inherit The value of the fontFamily property is inherited from parent element


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The fontFamily property is supported in all major browsers.


Example

Example

Change the font of a text:

<html>
<head>
<script type="text/javascript">
function displayResult()
{
document.getElementById("p1").style.fontFamily="Impact,Charcoal,sans-serif";
}
</script>
</head>
<body>

<p id="p1">This is some text.</p>
<br />

<button type="button" onclick="displayResult()">Change font</button>

</body>
</html>

Try it yourself »


Style Object Reference Style Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE