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