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