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