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