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