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