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