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