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