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