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