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