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