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