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