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