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