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