Use on the webTotal Use [ 6590 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/dd94ddf99b6082e709d2d5e47508fd56?family=SAA+Series+W01+EM+D" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/dd94ddf99b6082e709d2d5e47508fd56?family=SAA+Series+W01+EM+D);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "SAA Series W01 EM D";
src: url("https://db.onlinewebfonts.com/t/dd94ddf99b6082e709d2d5e47508fd56.eot");
src: url("https://db.onlinewebfonts.com/t/dd94ddf99b6082e709d2d5e47508fd56.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/dd94ddf99b6082e709d2d5e47508fd56.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/dd94ddf99b6082e709d2d5e47508fd56.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/dd94ddf99b6082e709d2d5e47508fd56.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/dd94ddf99b6082e709d2d5e47508fd56.svg#SAA Series W01 EM D")format("svg");
}
2CSS rules to specify fonts
font-family: "SAA Series W01 EM D";