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