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