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