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