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