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