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