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