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