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