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