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