Typography
font-family
Learn how to use the CSS font-family property.
CSS font-family
The font-family property sets the font family for an HTML element.
Syntax
.element {
font-family: sans-serif;
}
HTML Context Example
<div class="card">
This is a styled element.
</div>
<style>
.card {
font-family: sans-serif;
}
</style>
Notes
Experiment in the CSS playground to see how this affects layout and styling.