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