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