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