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