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