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