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