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