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