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