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