CSS - Use Your Own Custom Fonts

by Meredith Crow

HTML

<p>Here is my special webfont</p>

CSS

@font-face {
    font-family: 'Snowburst One'; /* give your font a name to reference it by later on! */
    src: url(http://themes.googleusercontent.com/static/fonts/snowburstone/v1/zSQzKOPukXRux2oTqfYJjIkaQb-UsZVONjobs91YQtw.woff);
    
/* use src to point to the location of your custom font could be from your local server folder (like ./fonts/) or a remote location. */
}

p {
    font-family: 'Snowburst One', cursive; /* apply your font by name and provide fallback fonts using coma separation */
}

JavaScript

// How to load custom webfonts