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