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