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