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