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