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