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