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