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