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