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