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