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