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