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