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