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