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