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