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