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