Use on the webTotal Use [ 6412 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1cb3068be4cac8030c2b06ba2f115baa?family=SAA+Series+W01+B+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/1cb3068be4cac8030c2b06ba2f115baa?family=SAA+Series+W01+B+D);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "SAA Series W01 B D";
src: url("https://db.onlinewebfonts.com/t/1cb3068be4cac8030c2b06ba2f115baa.eot");
src: url("https://db.onlinewebfonts.com/t/1cb3068be4cac8030c2b06ba2f115baa.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1cb3068be4cac8030c2b06ba2f115baa.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1cb3068be4cac8030c2b06ba2f115baa.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1cb3068be4cac8030c2b06ba2f115baa.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1cb3068be4cac8030c2b06ba2f115baa.svg#SAA Series W01 B D")format("svg");
}
2CSS rules to specify fonts
font-family: "SAA Series W01 B D";