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