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