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