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