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