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