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