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