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